1 /*
2  * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.
8  *
9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  *
23  */
24 
25 #include "precompiled.hpp"
26 #include "code/codeCache.hpp"
27 #include "code/vmreg.inline.hpp"
28 #include "compiler/abstractCompiler.hpp"
29 #include "compiler/disassembler.hpp"
30 #include "gc/shared/collectedHeap.inline.hpp"
31 #include "interpreter/interpreter.hpp"
32 #include "interpreter/oopMapCache.hpp"
33 #include "memory/resourceArea.hpp"
34 #include "memory/universe.hpp"
35 #include "oops/markOop.hpp"
36 #include "oops/method.hpp"
37 #include "oops/methodData.hpp"
38 #include "oops/oop.inline.hpp"
39 #include "oops/verifyOopClosure.hpp"
40 #include "prims/methodHandles.hpp"
41 #include "runtime/frame.inline.hpp"
42 #include "runtime/handles.inline.hpp"
43 #include "runtime/javaCalls.hpp"
44 #include "runtime/monitorChunk.hpp"
45 #include "runtime/os.hpp"
46 #include "runtime/sharedRuntime.hpp"
47 #include "runtime/signature.hpp"
48 #include "runtime/stubCodeGenerator.hpp"
49 #include "runtime/stubRoutines.hpp"
50 #include "runtime/thread.inline.hpp"
51 #include "utilities/debug.hpp"
52 #include "utilities/decoder.hpp"
53 #include "utilities/formatBuffer.hpp"
54 
RegisterMap(JavaThread * thread,bool update_map)55 RegisterMap::RegisterMap(JavaThread *thread, bool update_map) {
56   _thread         = thread;
57   _update_map     = update_map;
58   clear();
59   debug_only(_update_for_id = NULL;)
60 #ifndef PRODUCT
61   for (int i = 0; i < reg_count ; i++ ) _location[i] = NULL;
62 #endif /* PRODUCT */
63 }
64 
RegisterMap(const RegisterMap * map)65 RegisterMap::RegisterMap(const RegisterMap* map) {
66   assert(map != this, "bad initialization parameter");
67   assert(map != NULL, "RegisterMap must be present");
68   _thread                = map->thread();
69   _update_map            = map->update_map();
70   _include_argument_oops = map->include_argument_oops();
71   debug_only(_update_for_id = map->_update_for_id;)
72   pd_initialize_from(map);
73   if (update_map()) {
74     for(int i = 0; i < location_valid_size; i++) {
75       LocationValidType bits = !update_map() ? 0 : map->_location_valid[i];
76       _location_valid[i] = bits;
77       // for whichever bits are set, pull in the corresponding map->_location
78       int j = i*location_valid_type_size;
79       while (bits != 0) {
80         if ((bits & 1) != 0) {
81           assert(0 <= j && j < reg_count, "range check");
82           _location[j] = map->_location[j];
83         }
84         bits >>= 1;
85         j += 1;
86       }
87     }
88   }
89 }
90 
clear()91 void RegisterMap::clear() {
92   set_include_argument_oops(true);
93   if (_update_map) {
94     for(int i = 0; i < location_valid_size; i++) {
95       _location_valid[i] = 0;
96     }
97     pd_clear();
98   } else {
99     pd_initialize();
100   }
101 }
102 
103 #ifndef PRODUCT
104 
print_on(outputStream * st) const105 void RegisterMap::print_on(outputStream* st) const {
106   st->print_cr("Register map");
107   for(int i = 0; i < reg_count; i++) {
108 
109     VMReg r = VMRegImpl::as_VMReg(i);
110     intptr_t* src = (intptr_t*) location(r);
111     if (src != NULL) {
112 
113       r->print_on(st);
114       st->print(" [" INTPTR_FORMAT "] = ", p2i(src));
115       if (((uintptr_t)src & (sizeof(*src)-1)) != 0) {
116         st->print_cr("<misaligned>");
117       } else {
118         st->print_cr(INTPTR_FORMAT, *src);
119       }
120     }
121   }
122 }
123 
print() const124 void RegisterMap::print() const {
125   print_on(tty);
126 }
127 
128 #endif
129 // This returns the pc that if you were in the debugger you'd see. Not
130 // the idealized value in the frame object. This undoes the magic conversion
131 // that happens for deoptimized frames. In addition it makes the value the
132 // hardware would want to see in the native frame. The only user (at this point)
133 // is deoptimization. It likely no one else should ever use it.
134 
raw_pc() const135 address frame::raw_pc() const {
136   if (is_deoptimized_frame()) {
137     CompiledMethod* cm = cb()->as_compiled_method_or_null();
138     if (cm->is_method_handle_return(pc()))
139       return cm->deopt_mh_handler_begin() - pc_return_offset;
140     else
141       return cm->deopt_handler_begin() - pc_return_offset;
142   } else {
143     return (pc() - pc_return_offset);
144   }
145 }
146 
147 // Change the pc in a frame object. This does not change the actual pc in
148 // actual frame. To do that use patch_pc.
149 //
set_pc(address newpc)150 void frame::set_pc(address   newpc ) {
151 #ifdef ASSERT
152   if (_cb != NULL && _cb->is_nmethod()) {
153     assert(!((nmethod*)_cb)->is_deopt_pc(_pc), "invariant violation");
154   }
155 #endif // ASSERT
156 
157   // Unsafe to use the is_deoptimzed tester after changing pc
158   _deopt_state = unknown;
159   _pc = newpc;
160   _cb = CodeCache::find_blob_unsafe(_pc);
161 
162 }
163 
164 // type testers
is_ignored_frame() const165 bool frame::is_ignored_frame() const {
166   return false;  // FIXME: some LambdaForm frames should be ignored
167 }
is_deoptimized_frame() const168 bool frame::is_deoptimized_frame() const {
169   assert(_deopt_state != unknown, "not answerable");
170   return _deopt_state == is_deoptimized;
171 }
172 
is_native_frame() const173 bool frame::is_native_frame() const {
174   return (_cb != NULL &&
175           _cb->is_nmethod() &&
176           ((nmethod*)_cb)->is_native_method());
177 }
178 
is_java_frame() const179 bool frame::is_java_frame() const {
180   if (is_interpreted_frame()) return true;
181   if (is_compiled_frame())    return true;
182   return false;
183 }
184 
185 
is_compiled_frame() const186 bool frame::is_compiled_frame() const {
187   if (_cb != NULL &&
188       _cb->is_compiled() &&
189       ((CompiledMethod*)_cb)->is_java_method()) {
190     return true;
191   }
192   return false;
193 }
194 
195 
is_runtime_frame() const196 bool frame::is_runtime_frame() const {
197   return (_cb != NULL && _cb->is_runtime_stub());
198 }
199 
is_safepoint_blob_frame() const200 bool frame::is_safepoint_blob_frame() const {
201   return (_cb != NULL && _cb->is_safepoint_stub());
202 }
203 
204 // testers
205 
is_first_java_frame() const206 bool frame::is_first_java_frame() const {
207   RegisterMap map(JavaThread::current(), false); // No update
208   frame s;
209   for (s = sender(&map); !(s.is_java_frame() || s.is_first_frame()); s = s.sender(&map));
210   return s.is_first_frame();
211 }
212 
213 
entry_frame_is_first() const214 bool frame::entry_frame_is_first() const {
215   return entry_frame_call_wrapper()->is_first_frame();
216 }
217 
entry_frame_call_wrapper_if_safe(JavaThread * thread) const218 JavaCallWrapper* frame::entry_frame_call_wrapper_if_safe(JavaThread* thread) const {
219   JavaCallWrapper** jcw = entry_frame_call_wrapper_addr();
220   address addr = (address) jcw;
221 
222   // addr must be within the usable part of the stack
223   if (thread->is_in_usable_stack(addr)) {
224     return *jcw;
225   }
226 
227   return NULL;
228 }
229 
is_entry_frame_valid(JavaThread * thread) const230 bool frame::is_entry_frame_valid(JavaThread* thread) const {
231   // Validate the JavaCallWrapper an entry frame must have
232   address jcw = (address)entry_frame_call_wrapper();
233   bool jcw_safe = (jcw < thread->stack_base()) && (jcw > (address)fp()); // less than stack base
234   if (!jcw_safe) {
235     return false;
236   }
237 
238   // Validate sp saved in the java frame anchor
239   JavaFrameAnchor* jfa = entry_frame_call_wrapper()->anchor();
240   return (jfa->last_Java_sp() > sp());
241 }
242 
should_be_deoptimized() const243 bool frame::should_be_deoptimized() const {
244   if (_deopt_state == is_deoptimized ||
245       !is_compiled_frame() ) return false;
246   assert(_cb != NULL && _cb->is_compiled(), "must be an nmethod");
247   CompiledMethod* nm = (CompiledMethod *)_cb;
248   if (TraceDependencies) {
249     tty->print("checking (%s) ", nm->is_marked_for_deoptimization() ? "true" : "false");
250     nm->print_value_on(tty);
251     tty->cr();
252   }
253 
254   if( !nm->is_marked_for_deoptimization() )
255     return false;
256 
257   // If at the return point, then the frame has already been popped, and
258   // only the return needs to be executed. Don't deoptimize here.
259   return !nm->is_at_poll_return(pc());
260 }
261 
can_be_deoptimized() const262 bool frame::can_be_deoptimized() const {
263   if (!is_compiled_frame()) return false;
264   CompiledMethod* nm = (CompiledMethod*)_cb;
265 
266   if( !nm->can_be_deoptimized() )
267     return false;
268 
269   return !nm->is_at_poll_return(pc());
270 }
271 
deoptimize(JavaThread * thread)272 void frame::deoptimize(JavaThread* thread) {
273   // Schedule deoptimization of an nmethod activation with this frame.
274   assert(_cb != NULL && _cb->is_compiled(), "must be");
275 
276   // This is a fix for register window patching race
277   if (NeedsDeoptSuspend && Thread::current() != thread) {
278     assert(SafepointSynchronize::is_at_safepoint(),
279            "patching other threads for deopt may only occur at a safepoint");
280 
281     // It is possible especially with DeoptimizeALot/DeoptimizeRandom that
282     // we could see the frame again and ask for it to be deoptimized since
283     // it might move for a long time. That is harmless and we just ignore it.
284     if (id() == thread->must_deopt_id()) {
285       assert(thread->is_deopt_suspend(), "lost suspension");
286       return;
287     }
288 
289     // We are at a safepoint so the target thread can only be
290     // in 4 states:
291     //     blocked - no problem
292     //     blocked_trans - no problem (i.e. could have woken up from blocked
293     //                                 during a safepoint).
294     //     native - register window pc patching race
295     //     native_trans - momentary state
296     //
297     // We could just wait out a thread in native_trans to block.
298     // Then we'd have all the issues that the safepoint code has as to
299     // whether to spin or block. It isn't worth it. Just treat it like
300     // native and be done with it.
301     //
302     // Examine the state of the thread at the start of safepoint since
303     // threads that were in native at the start of the safepoint could
304     // come to a halt during the safepoint, changing the current value
305     // of the safepoint_state.
306     JavaThreadState state = thread->safepoint_state()->orig_thread_state();
307     if (state == _thread_in_native || state == _thread_in_native_trans) {
308       // Since we are at a safepoint the target thread will stop itself
309       // before it can return to java as long as we remain at the safepoint.
310       // Therefore we can put an additional request for the thread to stop
311       // no matter what no (like a suspend). This will cause the thread
312       // to notice it needs to do the deopt on its own once it leaves native.
313       //
314       // The only reason we must do this is because on machine with register
315       // windows we have a race with patching the return address and the
316       // window coming live as the thread returns to the Java code (but still
317       // in native mode) and then blocks. It is only this top most frame
318       // that is at risk. So in truth we could add an additional check to
319       // see if this frame is one that is at risk.
320       RegisterMap map(thread, false);
321       frame at_risk =  thread->last_frame().sender(&map);
322       if (id() == at_risk.id()) {
323         thread->set_must_deopt_id(id());
324         thread->set_deopt_suspend();
325         return;
326       }
327     }
328   } // NeedsDeoptSuspend
329 
330 
331   // If the call site is a MethodHandle call site use the MH deopt
332   // handler.
333   CompiledMethod* cm = (CompiledMethod*) _cb;
334   address deopt = cm->is_method_handle_return(pc()) ?
335                         cm->deopt_mh_handler_begin() :
336                         cm->deopt_handler_begin();
337 
338   // Save the original pc before we patch in the new one
339   cm->set_original_pc(this, pc());
340   patch_pc(thread, deopt);
341 
342 #ifdef ASSERT
343   {
344     RegisterMap map(thread, false);
345     frame check = thread->last_frame();
346     while (id() != check.id()) {
347       check = check.sender(&map);
348     }
349     assert(check.is_deoptimized_frame(), "missed deopt");
350   }
351 #endif // ASSERT
352 }
353 
java_sender() const354 frame frame::java_sender() const {
355   RegisterMap map(JavaThread::current(), false);
356   frame s;
357   for (s = sender(&map); !(s.is_java_frame() || s.is_first_frame()); s = s.sender(&map)) ;
358   guarantee(s.is_java_frame(), "tried to get caller of first java frame");
359   return s;
360 }
361 
real_sender(RegisterMap * map) const362 frame frame::real_sender(RegisterMap* map) const {
363   frame result = sender(map);
364   while (result.is_runtime_frame() ||
365          result.is_ignored_frame()) {
366     result = result.sender(map);
367   }
368   return result;
369 }
370 
371 // Note: called by profiler - NOT for current thread
profile_find_Java_sender_frame(JavaThread * thread)372 frame frame::profile_find_Java_sender_frame(JavaThread *thread) {
373 // If we don't recognize this frame, walk back up the stack until we do
374   RegisterMap map(thread, false);
375   frame first_java_frame = frame();
376 
377   // Find the first Java frame on the stack starting with input frame
378   if (is_java_frame()) {
379     // top frame is compiled frame or deoptimized frame
380     first_java_frame = *this;
381   } else if (safe_for_sender(thread)) {
382     for (frame sender_frame = sender(&map);
383       sender_frame.safe_for_sender(thread) && !sender_frame.is_first_frame();
384       sender_frame = sender_frame.sender(&map)) {
385       if (sender_frame.is_java_frame()) {
386         first_java_frame = sender_frame;
387         break;
388       }
389     }
390   }
391   return first_java_frame;
392 }
393 
394 // Interpreter frames
395 
396 
interpreter_frame_set_locals(intptr_t * locs)397 void frame::interpreter_frame_set_locals(intptr_t* locs)  {
398   assert(is_interpreted_frame(), "Not an interpreted frame");
399   *interpreter_frame_locals_addr() = locs;
400 }
401 
interpreter_frame_method() const402 Method* frame::interpreter_frame_method() const {
403   assert(is_interpreted_frame(), "interpreted frame expected");
404   Method* m = *interpreter_frame_method_addr();
405   assert(m->is_method(), "not a Method*");
406   return m;
407 }
408 
interpreter_frame_set_method(Method * method)409 void frame::interpreter_frame_set_method(Method* method) {
410   assert(is_interpreted_frame(), "interpreted frame expected");
411   *interpreter_frame_method_addr() = method;
412 }
413 
interpreter_frame_set_mirror(oop mirror)414 void frame::interpreter_frame_set_mirror(oop mirror) {
415   assert(is_interpreted_frame(), "interpreted frame expected");
416   *interpreter_frame_mirror_addr() = mirror;
417 }
418 
interpreter_frame_bci() const419 jint frame::interpreter_frame_bci() const {
420   assert(is_interpreted_frame(), "interpreted frame expected");
421   address bcp = interpreter_frame_bcp();
422   return interpreter_frame_method()->bci_from(bcp);
423 }
424 
interpreter_frame_bcp() const425 address frame::interpreter_frame_bcp() const {
426   assert(is_interpreted_frame(), "interpreted frame expected");
427   address bcp = (address)*interpreter_frame_bcp_addr();
428   return interpreter_frame_method()->bcp_from(bcp);
429 }
430 
interpreter_frame_set_bcp(address bcp)431 void frame::interpreter_frame_set_bcp(address bcp) {
432   assert(is_interpreted_frame(), "interpreted frame expected");
433   *interpreter_frame_bcp_addr() = (intptr_t)bcp;
434 }
435 
interpreter_frame_mdp() const436 address frame::interpreter_frame_mdp() const {
437   assert(ProfileInterpreter, "must be profiling interpreter");
438   assert(is_interpreted_frame(), "interpreted frame expected");
439   return (address)*interpreter_frame_mdp_addr();
440 }
441 
interpreter_frame_set_mdp(address mdp)442 void frame::interpreter_frame_set_mdp(address mdp) {
443   assert(is_interpreted_frame(), "interpreted frame expected");
444   assert(ProfileInterpreter, "must be profiling interpreter");
445   *interpreter_frame_mdp_addr() = (intptr_t)mdp;
446 }
447 
next_monitor_in_interpreter_frame(BasicObjectLock * current) const448 BasicObjectLock* frame::next_monitor_in_interpreter_frame(BasicObjectLock* current) const {
449   assert(is_interpreted_frame(), "Not an interpreted frame");
450 #ifdef ASSERT
451   interpreter_frame_verify_monitor(current);
452 #endif
453   BasicObjectLock* next = (BasicObjectLock*) (((intptr_t*) current) + interpreter_frame_monitor_size());
454   return next;
455 }
456 
previous_monitor_in_interpreter_frame(BasicObjectLock * current) const457 BasicObjectLock* frame::previous_monitor_in_interpreter_frame(BasicObjectLock* current) const {
458   assert(is_interpreted_frame(), "Not an interpreted frame");
459 #ifdef ASSERT
460 //   // This verification needs to be checked before being enabled
461 //   interpreter_frame_verify_monitor(current);
462 #endif
463   BasicObjectLock* previous = (BasicObjectLock*) (((intptr_t*) current) - interpreter_frame_monitor_size());
464   return previous;
465 }
466 
467 // Interpreter locals and expression stack locations.
468 
interpreter_frame_local_at(int index) const469 intptr_t* frame::interpreter_frame_local_at(int index) const {
470   const int n = Interpreter::local_offset_in_bytes(index)/wordSize;
471   return &((*interpreter_frame_locals_addr())[n]);
472 }
473 
interpreter_frame_expression_stack_at(jint offset) const474 intptr_t* frame::interpreter_frame_expression_stack_at(jint offset) const {
475   const int i = offset * interpreter_frame_expression_stack_direction();
476   const int n = i * Interpreter::stackElementWords;
477   return &(interpreter_frame_expression_stack()[n]);
478 }
479 
interpreter_frame_expression_stack_size() const480 jint frame::interpreter_frame_expression_stack_size() const {
481   // Number of elements on the interpreter expression stack
482   // Callers should span by stackElementWords
483   int element_size = Interpreter::stackElementWords;
484   size_t stack_size = 0;
485   if (frame::interpreter_frame_expression_stack_direction() < 0) {
486     stack_size = (interpreter_frame_expression_stack() -
487                   interpreter_frame_tos_address() + 1)/element_size;
488   } else {
489     stack_size = (interpreter_frame_tos_address() -
490                   interpreter_frame_expression_stack() + 1)/element_size;
491   }
492   assert( stack_size <= (size_t)max_jint, "stack size too big");
493   return ((jint)stack_size);
494 }
495 
496 
497 // (frame::interpreter_frame_sender_sp accessor is in frame_<arch>.cpp)
498 
print_name() const499 const char* frame::print_name() const {
500   if (is_native_frame())      return "Native";
501   if (is_interpreted_frame()) return "Interpreted";
502   if (is_compiled_frame()) {
503     if (is_deoptimized_frame()) return "Deoptimized";
504     return "Compiled";
505   }
506   if (sp() == NULL)            return "Empty";
507   return "C";
508 }
509 
print_value_on(outputStream * st,JavaThread * thread) const510 void frame::print_value_on(outputStream* st, JavaThread *thread) const {
511   NOT_PRODUCT(address begin = pc()-40;)
512   NOT_PRODUCT(address end   = NULL;)
513 
514   st->print("%s frame (sp=" INTPTR_FORMAT " unextended sp=" INTPTR_FORMAT, print_name(), p2i(sp()), p2i(unextended_sp()));
515   if (sp() != NULL)
516     st->print(", fp=" INTPTR_FORMAT ", real_fp=" INTPTR_FORMAT ", pc=" INTPTR_FORMAT,
517               p2i(fp()), p2i(real_fp()), p2i(pc()));
518 
519   if (StubRoutines::contains(pc())) {
520     st->print_cr(")");
521     st->print("(");
522     StubCodeDesc* desc = StubCodeDesc::desc_for(pc());
523     st->print("~Stub::%s", desc->name());
524     NOT_PRODUCT(begin = desc->begin(); end = desc->end();)
525   } else if (Interpreter::contains(pc())) {
526     st->print_cr(")");
527     st->print("(");
528     InterpreterCodelet* desc = Interpreter::codelet_containing(pc());
529     if (desc != NULL) {
530       st->print("~");
531       desc->print_on(st);
532       NOT_PRODUCT(begin = desc->code_begin(); end = desc->code_end();)
533     } else {
534       st->print("~interpreter");
535     }
536   }
537   st->print_cr(")");
538 
539   if (_cb != NULL) {
540     st->print("     ");
541     _cb->print_value_on(st);
542     st->cr();
543 #ifndef PRODUCT
544     if (end == NULL) {
545       begin = _cb->code_begin();
546       end   = _cb->code_end();
547     }
548 #endif
549   }
550   NOT_PRODUCT(if (WizardMode && Verbose) Disassembler::decode(begin, end);)
551 }
552 
553 
print_on(outputStream * st) const554 void frame::print_on(outputStream* st) const {
555   print_value_on(st,NULL);
556   if (is_interpreted_frame()) {
557     interpreter_frame_print_on(st);
558   }
559 }
560 
561 
interpreter_frame_print_on(outputStream * st) const562 void frame::interpreter_frame_print_on(outputStream* st) const {
563 #ifndef PRODUCT
564   assert(is_interpreted_frame(), "Not an interpreted frame");
565   jint i;
566   for (i = 0; i < interpreter_frame_method()->max_locals(); i++ ) {
567     intptr_t x = *interpreter_frame_local_at(i);
568     st->print(" - local  [" INTPTR_FORMAT "]", x);
569     st->fill_to(23);
570     st->print_cr("; #%d", i);
571   }
572   for (i = interpreter_frame_expression_stack_size() - 1; i >= 0; --i ) {
573     intptr_t x = *interpreter_frame_expression_stack_at(i);
574     st->print(" - stack  [" INTPTR_FORMAT "]", x);
575     st->fill_to(23);
576     st->print_cr("; #%d", i);
577   }
578   // locks for synchronization
579   for (BasicObjectLock* current = interpreter_frame_monitor_end();
580        current < interpreter_frame_monitor_begin();
581        current = next_monitor_in_interpreter_frame(current)) {
582     st->print(" - obj    [");
583     current->obj()->print_value_on(st);
584     st->print_cr("]");
585     st->print(" - lock   [");
586     current->lock()->print_on(st);
587     st->print_cr("]");
588   }
589   // monitor
590   st->print_cr(" - monitor[" INTPTR_FORMAT "]", p2i(interpreter_frame_monitor_begin()));
591   // bcp
592   st->print(" - bcp    [" INTPTR_FORMAT "]", p2i(interpreter_frame_bcp()));
593   st->fill_to(23);
594   st->print_cr("; @%d", interpreter_frame_bci());
595   // locals
596   st->print_cr(" - locals [" INTPTR_FORMAT "]", p2i(interpreter_frame_local_at(0)));
597   // method
598   st->print(" - method [" INTPTR_FORMAT "]", p2i(interpreter_frame_method()));
599   st->fill_to(23);
600   st->print("; ");
601   interpreter_frame_method()->print_name(st);
602   st->cr();
603 #endif
604 }
605 
606 // Print whether the frame is in the VM or OS indicating a HotSpot problem.
607 // Otherwise, it's likely a bug in the native library that the Java code calls,
608 // hopefully indicating where to submit bugs.
print_C_frame(outputStream * st,char * buf,int buflen,address pc)609 void frame::print_C_frame(outputStream* st, char* buf, int buflen, address pc) {
610   // C/C++ frame
611   bool in_vm = os::address_is_in_vm(pc);
612   st->print(in_vm ? "V" : "C");
613 
614   int offset;
615   bool found;
616 
617   // libname
618   found = os::dll_address_to_library_name(pc, buf, buflen, &offset);
619   if (found) {
620     // skip directory names
621     const char *p1, *p2;
622     p1 = buf;
623     int len = (int)strlen(os::file_separator());
624     while ((p2 = strstr(p1, os::file_separator())) != NULL) p1 = p2 + len;
625     st->print("  [%s+0x%x]", p1, offset);
626   } else {
627     st->print("  " PTR_FORMAT, p2i(pc));
628   }
629 
630   found = os::dll_address_to_function_name(pc, buf, buflen, &offset);
631   if (found) {
632     st->print("  %s+0x%x", buf, offset);
633   }
634 }
635 
636 // frame::print_on_error() is called by fatal error handler. Notice that we may
637 // crash inside this function if stack frame is corrupted. The fatal error
638 // handler can catch and handle the crash. Here we assume the frame is valid.
639 //
640 // First letter indicates type of the frame:
641 //    J: Java frame (compiled)
642 //    A: Java frame (aot compiled)
643 //    j: Java frame (interpreted)
644 //    V: VM frame (C/C++)
645 //    v: Other frames running VM generated code (e.g. stubs, adapters, etc.)
646 //    C: C/C++ frame
647 //
648 // We don't need detailed frame type as that in frame::print_name(). "C"
649 // suggests the problem is in user lib; everything else is likely a VM bug.
650 
print_on_error(outputStream * st,char * buf,int buflen,bool verbose) const651 void frame::print_on_error(outputStream* st, char* buf, int buflen, bool verbose) const {
652   if (_cb != NULL) {
653     if (Interpreter::contains(pc())) {
654       Method* m = this->interpreter_frame_method();
655       if (m != NULL) {
656         m->name_and_sig_as_C_string(buf, buflen);
657         st->print("j  %s", buf);
658         st->print("+%d", this->interpreter_frame_bci());
659         ModuleEntry* module = m->method_holder()->module();
660         if (module->is_named()) {
661           module->name()->as_C_string(buf, buflen);
662           st->print(" %s", buf);
663           if (module->version() != NULL) {
664             module->version()->as_C_string(buf, buflen);
665             st->print("@%s", buf);
666           }
667         }
668       } else {
669         st->print("j  " PTR_FORMAT, p2i(pc()));
670       }
671     } else if (StubRoutines::contains(pc())) {
672       StubCodeDesc* desc = StubCodeDesc::desc_for(pc());
673       if (desc != NULL) {
674         st->print("v  ~StubRoutines::%s", desc->name());
675       } else {
676         st->print("v  ~StubRoutines::" PTR_FORMAT, p2i(pc()));
677       }
678     } else if (_cb->is_buffer_blob()) {
679       st->print("v  ~BufferBlob::%s", ((BufferBlob *)_cb)->name());
680     } else if (_cb->is_compiled()) {
681       CompiledMethod* cm = (CompiledMethod*)_cb;
682       Method* m = cm->method();
683       if (m != NULL) {
684         if (cm->is_aot()) {
685           st->print("A %d ", cm->compile_id());
686         } else if (cm->is_nmethod()) {
687           nmethod* nm = cm->as_nmethod();
688           st->print("J %d%s", nm->compile_id(), (nm->is_osr_method() ? "%" : ""));
689           st->print(" %s", nm->compiler_name());
690         }
691         m->name_and_sig_as_C_string(buf, buflen);
692         st->print(" %s", buf);
693         ModuleEntry* module = m->method_holder()->module();
694         if (module->is_named()) {
695           module->name()->as_C_string(buf, buflen);
696           st->print(" %s", buf);
697           if (module->version() != NULL) {
698             module->version()->as_C_string(buf, buflen);
699             st->print("@%s", buf);
700           }
701         }
702         st->print(" (%d bytes) @ " PTR_FORMAT " [" PTR_FORMAT "+" INTPTR_FORMAT "]",
703                   m->code_size(), p2i(_pc), p2i(_cb->code_begin()), _pc - _cb->code_begin());
704 #if INCLUDE_JVMCI
705         if (cm->is_nmethod()) {
706           nmethod* nm = cm->as_nmethod();
707           char* jvmciName = nm->jvmci_installed_code_name(buf, buflen);
708           if (jvmciName != NULL) {
709             st->print(" (%s)", jvmciName);
710           }
711         }
712 #endif
713       } else {
714         st->print("J  " PTR_FORMAT, p2i(pc()));
715       }
716     } else if (_cb->is_runtime_stub()) {
717       st->print("v  ~RuntimeStub::%s", ((RuntimeStub *)_cb)->name());
718     } else if (_cb->is_deoptimization_stub()) {
719       st->print("v  ~DeoptimizationBlob");
720     } else if (_cb->is_exception_stub()) {
721       st->print("v  ~ExceptionBlob");
722     } else if (_cb->is_safepoint_stub()) {
723       st->print("v  ~SafepointBlob");
724     } else if (_cb->is_adapter_blob()) {
725       st->print("v  ~AdapterBlob");
726     } else if (_cb->is_vtable_blob()) {
727       st->print("v  ~VtableBlob");
728     } else if (_cb->is_method_handles_adapter_blob()) {
729       st->print("v  ~MethodHandlesAdapterBlob");
730     } else if (_cb->is_uncommon_trap_stub()) {
731       st->print("v  ~UncommonTrapBlob");
732     } else {
733       st->print("v  blob " PTR_FORMAT, p2i(pc()));
734     }
735   } else {
736     print_C_frame(st, buf, buflen, pc());
737   }
738 }
739 
740 
741 /*
742   The interpreter_frame_expression_stack_at method in the case of SPARC needs the
743   max_stack value of the method in order to compute the expression stack address.
744   It uses the Method* in order to get the max_stack value but during GC this
745   Method* value saved on the frame is changed by reverse_and_push and hence cannot
746   be used. So we save the max_stack value in the FrameClosure object and pass it
747   down to the interpreter_frame_expression_stack_at method
748 */
749 class InterpreterFrameClosure : public OffsetClosure {
750  private:
751   frame* _fr;
752   OopClosure* _f;
753   int    _max_locals;
754   int    _max_stack;
755 
756  public:
InterpreterFrameClosure(frame * fr,int max_locals,int max_stack,OopClosure * f)757   InterpreterFrameClosure(frame* fr, int max_locals, int max_stack,
758                           OopClosure* f) {
759     _fr         = fr;
760     _max_locals = max_locals;
761     _max_stack  = max_stack;
762     _f          = f;
763   }
764 
offset_do(int offset)765   void offset_do(int offset) {
766     oop* addr;
767     if (offset < _max_locals) {
768       addr = (oop*) _fr->interpreter_frame_local_at(offset);
769       assert((intptr_t*)addr >= _fr->sp(), "must be inside the frame");
770       _f->do_oop(addr);
771     } else {
772       addr = (oop*) _fr->interpreter_frame_expression_stack_at((offset - _max_locals));
773       // In case of exceptions, the expression stack is invalid and the esp will be reset to express
774       // this condition. Therefore, we call f only if addr is 'inside' the stack (i.e., addr >= esp for Intel).
775       bool in_stack;
776       if (frame::interpreter_frame_expression_stack_direction() > 0) {
777         in_stack = (intptr_t*)addr <= _fr->interpreter_frame_tos_address();
778       } else {
779         in_stack = (intptr_t*)addr >= _fr->interpreter_frame_tos_address();
780       }
781       if (in_stack) {
782         _f->do_oop(addr);
783       }
784     }
785   }
786 
max_locals()787   int max_locals()  { return _max_locals; }
fr()788   frame* fr()       { return _fr; }
789 };
790 
791 
792 class InterpretedArgumentOopFinder: public SignatureInfo {
793  private:
794   OopClosure* _f;        // Closure to invoke
795   int    _offset;        // TOS-relative offset, decremented with each argument
796   bool   _has_receiver;  // true if the callee has a receiver
797   frame* _fr;
798 
set(int size,BasicType type)799   void set(int size, BasicType type) {
800     _offset -= size;
801     if (type == T_OBJECT || type == T_ARRAY) oop_offset_do();
802   }
803 
oop_offset_do()804   void oop_offset_do() {
805     oop* addr;
806     addr = (oop*)_fr->interpreter_frame_tos_at(_offset);
807     _f->do_oop(addr);
808   }
809 
810  public:
InterpretedArgumentOopFinder(Symbol * signature,bool has_receiver,frame * fr,OopClosure * f)811   InterpretedArgumentOopFinder(Symbol* signature, bool has_receiver, frame* fr, OopClosure* f) : SignatureInfo(signature), _has_receiver(has_receiver) {
812     // compute size of arguments
813     int args_size = ArgumentSizeComputer(signature).size() + (has_receiver ? 1 : 0);
814     assert(!fr->is_interpreted_frame() ||
815            args_size <= fr->interpreter_frame_expression_stack_size(),
816             "args cannot be on stack anymore");
817     // initialize InterpretedArgumentOopFinder
818     _f         = f;
819     _fr        = fr;
820     _offset    = args_size;
821   }
822 
oops_do()823   void oops_do() {
824     if (_has_receiver) {
825       --_offset;
826       oop_offset_do();
827     }
828     iterate_parameters();
829   }
830 };
831 
832 
833 // Entry frame has following form (n arguments)
834 //         +-----------+
835 //   sp -> |  last arg |
836 //         +-----------+
837 //         :    :::    :
838 //         +-----------+
839 // (sp+n)->|  first arg|
840 //         +-----------+
841 
842 
843 
844 // visits and GC's all the arguments in entry frame
845 class EntryFrameOopFinder: public SignatureInfo {
846  private:
847   bool   _is_static;
848   int    _offset;
849   frame* _fr;
850   OopClosure* _f;
851 
set(int size,BasicType type)852   void set(int size, BasicType type) {
853     assert (_offset >= 0, "illegal offset");
854     if (type == T_OBJECT || type == T_ARRAY) oop_at_offset_do(_offset);
855     _offset -= size;
856   }
857 
oop_at_offset_do(int offset)858   void oop_at_offset_do(int offset) {
859     assert (offset >= 0, "illegal offset");
860     oop* addr = (oop*) _fr->entry_frame_argument_at(offset);
861     _f->do_oop(addr);
862   }
863 
864  public:
EntryFrameOopFinder(frame * frame,Symbol * signature,bool is_static)865    EntryFrameOopFinder(frame* frame, Symbol* signature, bool is_static) : SignatureInfo(signature) {
866      _f = NULL; // will be set later
867      _fr = frame;
868      _is_static = is_static;
869      _offset = ArgumentSizeComputer(signature).size() - 1; // last parameter is at index 0
870    }
871 
arguments_do(OopClosure * f)872   void arguments_do(OopClosure* f) {
873     _f = f;
874     if (!_is_static) oop_at_offset_do(_offset+1); // do the receiver
875     iterate_parameters();
876   }
877 
878 };
879 
interpreter_callee_receiver_addr(Symbol * signature)880 oop* frame::interpreter_callee_receiver_addr(Symbol* signature) {
881   ArgumentSizeComputer asc(signature);
882   int size = asc.size();
883   return (oop *)interpreter_frame_tos_at(size);
884 }
885 
886 
oops_interpreted_do(OopClosure * f,const RegisterMap * map,bool query_oop_map_cache)887 void frame::oops_interpreted_do(OopClosure* f, const RegisterMap* map, bool query_oop_map_cache) {
888   assert(is_interpreted_frame(), "Not an interpreted frame");
889   assert(map != NULL, "map must be set");
890   Thread *thread = Thread::current();
891   methodHandle m (thread, interpreter_frame_method());
892   jint      bci = interpreter_frame_bci();
893 
894   assert(!Universe::heap()->is_in(m()),
895           "must be valid oop");
896   assert(m->is_method(), "checking frame value");
897   assert((m->is_native() && bci == 0)  ||
898          (!m->is_native() && bci >= 0 && bci < m->code_size()),
899          "invalid bci value");
900 
901   // Handle the monitor elements in the activation
902   for (
903     BasicObjectLock* current = interpreter_frame_monitor_end();
904     current < interpreter_frame_monitor_begin();
905     current = next_monitor_in_interpreter_frame(current)
906   ) {
907 #ifdef ASSERT
908     interpreter_frame_verify_monitor(current);
909 #endif
910     current->oops_do(f);
911   }
912 
913   if (m->is_native()) {
914     f->do_oop(interpreter_frame_temp_oop_addr());
915   }
916 
917   // The method pointer in the frame might be the only path to the method's
918   // klass, and the klass needs to be kept alive while executing. The GCs
919   // don't trace through method pointers, so the mirror of the method's klass
920   // is installed as a GC root.
921   f->do_oop(interpreter_frame_mirror_addr());
922 
923   int max_locals = m->is_native() ? m->size_of_parameters() : m->max_locals();
924 
925   Symbol* signature = NULL;
926   bool has_receiver = false;
927 
928   // Process a callee's arguments if we are at a call site
929   // (i.e., if we are at an invoke bytecode)
930   // This is used sometimes for calling into the VM, not for another
931   // interpreted or compiled frame.
932   if (!m->is_native()) {
933     Bytecode_invoke call = Bytecode_invoke_check(m, bci);
934     if (call.is_valid()) {
935       signature = call.signature();
936       has_receiver = call.has_receiver();
937       if (map->include_argument_oops() &&
938           interpreter_frame_expression_stack_size() > 0) {
939         ResourceMark rm(thread);  // is this right ???
940         // we are at a call site & the expression stack is not empty
941         // => process callee's arguments
942         //
943         // Note: The expression stack can be empty if an exception
944         //       occurred during method resolution/execution. In all
945         //       cases we empty the expression stack completely be-
946         //       fore handling the exception (the exception handling
947         //       code in the interpreter calls a blocking runtime
948         //       routine which can cause this code to be executed).
949         //       (was bug gri 7/27/98)
950         oops_interpreted_arguments_do(signature, has_receiver, f);
951       }
952     }
953   }
954 
955   InterpreterFrameClosure blk(this, max_locals, m->max_stack(), f);
956 
957   // process locals & expression stack
958   InterpreterOopMap mask;
959   if (query_oop_map_cache) {
960     m->mask_for(bci, &mask);
961   } else {
962     OopMapCache::compute_one_oop_map(m, bci, &mask);
963   }
964   mask.iterate_oop(&blk);
965 }
966 
967 
oops_interpreted_arguments_do(Symbol * signature,bool has_receiver,OopClosure * f)968 void frame::oops_interpreted_arguments_do(Symbol* signature, bool has_receiver, OopClosure* f) {
969   InterpretedArgumentOopFinder finder(signature, has_receiver, this, f);
970   finder.oops_do();
971 }
972 
oops_code_blob_do(OopClosure * f,CodeBlobClosure * cf,const RegisterMap * reg_map)973 void frame::oops_code_blob_do(OopClosure* f, CodeBlobClosure* cf, const RegisterMap* reg_map) {
974   assert(_cb != NULL, "sanity check");
975   if (_cb->oop_maps() != NULL) {
976     OopMapSet::oops_do(this, reg_map, f);
977 
978     // Preserve potential arguments for a callee. We handle this by dispatching
979     // on the codeblob. For c2i, we do
980     if (reg_map->include_argument_oops()) {
981       _cb->preserve_callee_argument_oops(*this, reg_map, f);
982     }
983   }
984   // In cases where perm gen is collected, GC will want to mark
985   // oops referenced from nmethods active on thread stacks so as to
986   // prevent them from being collected. However, this visit should be
987   // restricted to certain phases of the collection only. The
988   // closure decides how it wants nmethods to be traced.
989   if (cf != NULL)
990     cf->do_code_blob(_cb);
991 }
992 
993 class CompiledArgumentOopFinder: public SignatureInfo {
994  protected:
995   OopClosure*     _f;
996   int             _offset;        // the current offset, incremented with each argument
997   bool            _has_receiver;  // true if the callee has a receiver
998   bool            _has_appendix;  // true if the call has an appendix
999   frame           _fr;
1000   RegisterMap*    _reg_map;
1001   int             _arg_size;
1002   VMRegPair*      _regs;        // VMReg list of arguments
1003 
set(int size,BasicType type)1004   void set(int size, BasicType type) {
1005     if (type == T_OBJECT || type == T_ARRAY) handle_oop_offset();
1006     _offset += size;
1007   }
1008 
handle_oop_offset()1009   virtual void handle_oop_offset() {
1010     // Extract low order register number from register array.
1011     // In LP64-land, the high-order bits are valid but unhelpful.
1012     VMReg reg = _regs[_offset].first();
1013     oop *loc = _fr.oopmapreg_to_location(reg, _reg_map);
1014     _f->do_oop(loc);
1015   }
1016 
1017  public:
CompiledArgumentOopFinder(Symbol * signature,bool has_receiver,bool has_appendix,OopClosure * f,frame fr,const RegisterMap * reg_map)1018   CompiledArgumentOopFinder(Symbol* signature, bool has_receiver, bool has_appendix, OopClosure* f, frame fr,  const RegisterMap* reg_map)
1019     : SignatureInfo(signature) {
1020 
1021     // initialize CompiledArgumentOopFinder
1022     _f         = f;
1023     _offset    = 0;
1024     _has_receiver = has_receiver;
1025     _has_appendix = has_appendix;
1026     _fr        = fr;
1027     _reg_map   = (RegisterMap*)reg_map;
1028     _arg_size  = ArgumentSizeComputer(signature).size() + (has_receiver ? 1 : 0) + (has_appendix ? 1 : 0);
1029 
1030     int arg_size;
1031     _regs = SharedRuntime::find_callee_arguments(signature, has_receiver, has_appendix, &arg_size);
1032     assert(arg_size == _arg_size, "wrong arg size");
1033   }
1034 
oops_do()1035   void oops_do() {
1036     if (_has_receiver) {
1037       handle_oop_offset();
1038       _offset++;
1039     }
1040     iterate_parameters();
1041     if (_has_appendix) {
1042       handle_oop_offset();
1043       _offset++;
1044     }
1045   }
1046 };
1047 
oops_compiled_arguments_do(Symbol * signature,bool has_receiver,bool has_appendix,const RegisterMap * reg_map,OopClosure * f)1048 void frame::oops_compiled_arguments_do(Symbol* signature, bool has_receiver, bool has_appendix,
1049                                        const RegisterMap* reg_map, OopClosure* f) {
1050   ResourceMark rm;
1051   CompiledArgumentOopFinder finder(signature, has_receiver, has_appendix, f, *this, reg_map);
1052   finder.oops_do();
1053 }
1054 
1055 
1056 // Get receiver out of callers frame, i.e. find parameter 0 in callers
1057 // frame.  Consult ADLC for where parameter 0 is to be found.  Then
1058 // check local reg_map for it being a callee-save register or argument
1059 // register, both of which are saved in the local frame.  If not found
1060 // there, it must be an in-stack argument of the caller.
1061 // Note: caller.sp() points to callee-arguments
retrieve_receiver(RegisterMap * reg_map)1062 oop frame::retrieve_receiver(RegisterMap* reg_map) {
1063   frame caller = *this;
1064 
1065   // First consult the ADLC on where it puts parameter 0 for this signature.
1066   VMReg reg = SharedRuntime::name_for_receiver();
1067   oop* oop_adr = caller.oopmapreg_to_location(reg, reg_map);
1068   if (oop_adr == NULL) {
1069     guarantee(oop_adr != NULL, "bad register save location");
1070     return NULL;
1071   }
1072   oop r = *oop_adr;
1073   assert(Universe::heap()->is_in_or_null(r), "bad receiver: " INTPTR_FORMAT " (" INTX_FORMAT ")", p2i(r), p2i(r));
1074   return r;
1075 }
1076 
1077 
get_native_monitor()1078 BasicLock* frame::get_native_monitor() {
1079   nmethod* nm = (nmethod*)_cb;
1080   assert(_cb != NULL && _cb->is_nmethod() && nm->method()->is_native(),
1081          "Should not call this unless it's a native nmethod");
1082   int byte_offset = in_bytes(nm->native_basic_lock_sp_offset());
1083   assert(byte_offset >= 0, "should not see invalid offset");
1084   return (BasicLock*) &sp()[byte_offset / wordSize];
1085 }
1086 
get_native_receiver()1087 oop frame::get_native_receiver() {
1088   nmethod* nm = (nmethod*)_cb;
1089   assert(_cb != NULL && _cb->is_nmethod() && nm->method()->is_native(),
1090          "Should not call this unless it's a native nmethod");
1091   int byte_offset = in_bytes(nm->native_receiver_sp_offset());
1092   assert(byte_offset >= 0, "should not see invalid offset");
1093   oop owner = ((oop*) sp())[byte_offset / wordSize];
1094   assert( Universe::heap()->is_in(owner), "bad receiver" );
1095   return owner;
1096 }
1097 
oops_entry_do(OopClosure * f,const RegisterMap * map)1098 void frame::oops_entry_do(OopClosure* f, const RegisterMap* map) {
1099   assert(map != NULL, "map must be set");
1100   if (map->include_argument_oops()) {
1101     // must collect argument oops, as nobody else is doing it
1102     Thread *thread = Thread::current();
1103     methodHandle m (thread, entry_frame_call_wrapper()->callee_method());
1104     EntryFrameOopFinder finder(this, m->signature(), m->is_static());
1105     finder.arguments_do(f);
1106   }
1107   // Traverse the Handle Block saved in the entry frame
1108   entry_frame_call_wrapper()->oops_do(f);
1109 }
1110 
1111 
oops_do_internal(OopClosure * f,CodeBlobClosure * cf,RegisterMap * map,bool use_interpreter_oop_map_cache)1112 void frame::oops_do_internal(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map, bool use_interpreter_oop_map_cache) {
1113 #ifndef PRODUCT
1114 #if defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x5140
1115 #pragma error_messages(off, SEC_NULL_PTR_DEREF)
1116 #endif
1117   // simulate GC crash here to dump java thread in error report
1118   if (CrashGCForDumpingJavaThread) {
1119     char *t = NULL;
1120     *t = 'c';
1121   }
1122 #endif
1123   if (is_interpreted_frame()) {
1124     oops_interpreted_do(f, map, use_interpreter_oop_map_cache);
1125   } else if (is_entry_frame()) {
1126     oops_entry_do(f, map);
1127   } else if (CodeCache::contains(pc())) {
1128     oops_code_blob_do(f, cf, map);
1129   } else {
1130     ShouldNotReachHere();
1131   }
1132 }
1133 
nmethods_do(CodeBlobClosure * cf)1134 void frame::nmethods_do(CodeBlobClosure* cf) {
1135   if (_cb != NULL && _cb->is_nmethod()) {
1136     cf->do_code_blob(_cb);
1137   }
1138 }
1139 
1140 
1141 // call f() on the interpreted Method*s in the stack.
1142 // Have to walk the entire code cache for the compiled frames Yuck.
metadata_do(void f (Metadata *))1143 void frame::metadata_do(void f(Metadata*)) {
1144   if (is_interpreted_frame()) {
1145     Method* m = this->interpreter_frame_method();
1146     assert(m != NULL, "expecting a method in this frame");
1147     f(m);
1148   }
1149 }
1150 
verify(const RegisterMap * map)1151 void frame::verify(const RegisterMap* map) {
1152   // for now make sure receiver type is correct
1153   if (is_interpreted_frame()) {
1154     Method* method = interpreter_frame_method();
1155     guarantee(method->is_method(), "method is wrong in frame::verify");
1156     if (!method->is_static()) {
1157       // fetch the receiver
1158       oop* p = (oop*) interpreter_frame_local_at(0);
1159       // make sure we have the right receiver type
1160     }
1161   }
1162 #if COMPILER2_OR_JVMCI
1163   assert(DerivedPointerTable::is_empty(), "must be empty before verify");
1164 #endif
1165   oops_do_internal(&VerifyOopClosure::verify_oop, NULL, (RegisterMap*)map, false);
1166 }
1167 
1168 
1169 #ifdef ASSERT
verify_return_pc(address x)1170 bool frame::verify_return_pc(address x) {
1171   if (StubRoutines::returns_to_call_stub(x)) {
1172     return true;
1173   }
1174   if (CodeCache::contains(x)) {
1175     return true;
1176   }
1177   if (Interpreter::contains(x)) {
1178     return true;
1179   }
1180   return false;
1181 }
1182 #endif
1183 
1184 #ifdef ASSERT
interpreter_frame_verify_monitor(BasicObjectLock * value) const1185 void frame::interpreter_frame_verify_monitor(BasicObjectLock* value) const {
1186   assert(is_interpreted_frame(), "Not an interpreted frame");
1187   // verify that the value is in the right part of the frame
1188   address low_mark  = (address) interpreter_frame_monitor_end();
1189   address high_mark = (address) interpreter_frame_monitor_begin();
1190   address current   = (address) value;
1191 
1192   const int monitor_size = frame::interpreter_frame_monitor_size();
1193   guarantee((high_mark - current) % monitor_size  ==  0         , "Misaligned top of BasicObjectLock*");
1194   guarantee( high_mark > current                                , "Current BasicObjectLock* higher than high_mark");
1195 
1196   guarantee((current - low_mark) % monitor_size  ==  0         , "Misaligned bottom of BasicObjectLock*");
1197   guarantee( current >= low_mark                               , "Current BasicObjectLock* below than low_mark");
1198 }
1199 #endif
1200 
1201 #ifndef PRODUCT
describe(FrameValues & values,int frame_no)1202 void frame::describe(FrameValues& values, int frame_no) {
1203   // boundaries: sp and the 'real' frame pointer
1204   values.describe(-1, sp(), err_msg("sp for #%d", frame_no), 1);
1205   intptr_t* frame_pointer = real_fp(); // Note: may differ from fp()
1206 
1207   // print frame info at the highest boundary
1208   intptr_t* info_address = MAX2(sp(), frame_pointer);
1209 
1210   if (info_address != frame_pointer) {
1211     // print frame_pointer explicitly if not marked by the frame info
1212     values.describe(-1, frame_pointer, err_msg("frame pointer for #%d", frame_no), 1);
1213   }
1214 
1215   if (is_entry_frame() || is_compiled_frame() || is_interpreted_frame() || is_native_frame()) {
1216     // Label values common to most frames
1217     values.describe(-1, unextended_sp(), err_msg("unextended_sp for #%d", frame_no));
1218   }
1219 
1220   if (is_interpreted_frame()) {
1221     Method* m = interpreter_frame_method();
1222     int bci = interpreter_frame_bci();
1223 
1224     // Label the method and current bci
1225     values.describe(-1, info_address,
1226                     FormatBuffer<1024>("#%d method %s @ %d", frame_no, m->name_and_sig_as_C_string(), bci), 2);
1227     values.describe(-1, info_address,
1228                     err_msg("- %d locals %d max stack", m->max_locals(), m->max_stack()), 1);
1229     if (m->max_locals() > 0) {
1230       intptr_t* l0 = interpreter_frame_local_at(0);
1231       intptr_t* ln = interpreter_frame_local_at(m->max_locals() - 1);
1232       values.describe(-1, MAX2(l0, ln), err_msg("locals for #%d", frame_no), 1);
1233       // Report each local and mark as owned by this frame
1234       for (int l = 0; l < m->max_locals(); l++) {
1235         intptr_t* l0 = interpreter_frame_local_at(l);
1236         values.describe(frame_no, l0, err_msg("local %d", l));
1237       }
1238     }
1239 
1240     // Compute the actual expression stack size
1241     InterpreterOopMap mask;
1242     OopMapCache::compute_one_oop_map(m, bci, &mask);
1243     intptr_t* tos = NULL;
1244     // Report each stack element and mark as owned by this frame
1245     for (int e = 0; e < mask.expression_stack_size(); e++) {
1246       tos = MAX2(tos, interpreter_frame_expression_stack_at(e));
1247       values.describe(frame_no, interpreter_frame_expression_stack_at(e),
1248                       err_msg("stack %d", e));
1249     }
1250     if (tos != NULL) {
1251       values.describe(-1, tos, err_msg("expression stack for #%d", frame_no), 1);
1252     }
1253     if (interpreter_frame_monitor_begin() != interpreter_frame_monitor_end()) {
1254       values.describe(frame_no, (intptr_t*)interpreter_frame_monitor_begin(), "monitors begin");
1255       values.describe(frame_no, (intptr_t*)interpreter_frame_monitor_end(), "monitors end");
1256     }
1257   } else if (is_entry_frame()) {
1258     // For now just label the frame
1259     values.describe(-1, info_address, err_msg("#%d entry frame", frame_no), 2);
1260   } else if (is_compiled_frame()) {
1261     // For now just label the frame
1262     CompiledMethod* cm = (CompiledMethod*)cb();
1263     values.describe(-1, info_address,
1264                     FormatBuffer<1024>("#%d nmethod " INTPTR_FORMAT " for method %s%s%s", frame_no,
1265                                        p2i(cm),
1266                                        (cm->is_aot() ? "A ": "J "),
1267                                        cm->method()->name_and_sig_as_C_string(),
1268                                        (_deopt_state == is_deoptimized) ?
1269                                        " (deoptimized)" :
1270                                        ((_deopt_state == unknown) ? " (state unknown)" : "")),
1271                     2);
1272   } else if (is_native_frame()) {
1273     // For now just label the frame
1274     nmethod* nm = cb()->as_nmethod_or_null();
1275     values.describe(-1, info_address,
1276                     FormatBuffer<1024>("#%d nmethod " INTPTR_FORMAT " for native method %s", frame_no,
1277                                        p2i(nm), nm->method()->name_and_sig_as_C_string()), 2);
1278   } else {
1279     // provide default info if not handled before
1280     char *info = (char *) "special frame";
1281     if ((_cb != NULL) &&
1282         (_cb->name() != NULL)) {
1283       info = (char *)_cb->name();
1284     }
1285     values.describe(-1, info_address, err_msg("#%d <%s>", frame_no, info), 2);
1286   }
1287 
1288   // platform dependent additional data
1289   describe_pd(values, frame_no);
1290 }
1291 
1292 #endif
1293 
1294 
1295 //-----------------------------------------------------------------------------------
1296 // StackFrameStream implementation
1297 
StackFrameStream(JavaThread * thread,bool update)1298 StackFrameStream::StackFrameStream(JavaThread *thread, bool update) : _reg_map(thread, update) {
1299   assert(thread->has_last_Java_frame(), "sanity check");
1300   _fr = thread->last_frame();
1301   _is_done = false;
1302 }
1303 
1304 
1305 #ifndef PRODUCT
1306 
describe(int owner,intptr_t * location,const char * description,int priority)1307 void FrameValues::describe(int owner, intptr_t* location, const char* description, int priority) {
1308   FrameValue fv;
1309   fv.location = location;
1310   fv.owner = owner;
1311   fv.priority = priority;
1312   fv.description = NEW_RESOURCE_ARRAY(char, strlen(description) + 1);
1313   strcpy(fv.description, description);
1314   _values.append(fv);
1315 }
1316 
1317 
1318 #ifdef ASSERT
validate()1319 void FrameValues::validate() {
1320   _values.sort(compare);
1321   bool error = false;
1322   FrameValue prev;
1323   prev.owner = -1;
1324   for (int i = _values.length() - 1; i >= 0; i--) {
1325     FrameValue fv = _values.at(i);
1326     if (fv.owner == -1) continue;
1327     if (prev.owner == -1) {
1328       prev = fv;
1329       continue;
1330     }
1331     if (prev.location == fv.location) {
1332       if (fv.owner != prev.owner) {
1333         tty->print_cr("overlapping storage");
1334         tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT " %s", p2i(prev.location), *prev.location, prev.description);
1335         tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT " %s", p2i(fv.location), *fv.location, fv.description);
1336         error = true;
1337       }
1338     } else {
1339       prev = fv;
1340     }
1341   }
1342   assert(!error, "invalid layout");
1343 }
1344 #endif // ASSERT
1345 
print(JavaThread * thread)1346 void FrameValues::print(JavaThread* thread) {
1347   _values.sort(compare);
1348 
1349   // Sometimes values like the fp can be invalid values if the
1350   // register map wasn't updated during the walk.  Trim out values
1351   // that aren't actually in the stack of the thread.
1352   int min_index = 0;
1353   int max_index = _values.length() - 1;
1354   intptr_t* v0 = _values.at(min_index).location;
1355   intptr_t* v1 = _values.at(max_index).location;
1356 
1357   if (thread == Thread::current()) {
1358     while (!thread->is_in_stack((address)v0)) {
1359       v0 = _values.at(++min_index).location;
1360     }
1361     while (!thread->is_in_stack((address)v1)) {
1362       v1 = _values.at(--max_index).location;
1363     }
1364   } else {
1365     while (!thread->on_local_stack((address)v0)) {
1366       v0 = _values.at(++min_index).location;
1367     }
1368     while (!thread->on_local_stack((address)v1)) {
1369       v1 = _values.at(--max_index).location;
1370     }
1371   }
1372   intptr_t* min = MIN2(v0, v1);
1373   intptr_t* max = MAX2(v0, v1);
1374   intptr_t* cur = max;
1375   intptr_t* last = NULL;
1376   for (int i = max_index; i >= min_index; i--) {
1377     FrameValue fv = _values.at(i);
1378     while (cur > fv.location) {
1379       tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT, p2i(cur), *cur);
1380       cur--;
1381     }
1382     if (last == fv.location) {
1383       const char* spacer = "          " LP64_ONLY("        ");
1384       tty->print_cr(" %s  %s %s", spacer, spacer, fv.description);
1385     } else {
1386       tty->print_cr(" " INTPTR_FORMAT ": " INTPTR_FORMAT " %s", p2i(fv.location), *fv.location, fv.description);
1387       last = fv.location;
1388       cur--;
1389     }
1390   }
1391 }
1392 
1393 #endif // ndef PRODUCT
1394