1 /*
   2  * Copyright (c) 1997, 2014, 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 "interpreter/interpreter.hpp"
  27 #include "memory/resourceArea.hpp"
  28 #include "oops/markOop.hpp"
  29 #include "oops/method.hpp"
  30 #include "oops/oop.inline.hpp"
  31 #include "prims/methodHandles.hpp"
  32 #include "runtime/frame.inline.hpp"
  33 #include "runtime/handles.inline.hpp"
  34 #include "runtime/javaCalls.hpp"
  35 #include "runtime/monitorChunk.hpp"
  36 #include "runtime/os.hpp"
  37 #include "runtime/signature.hpp"
  38 #include "runtime/stubCodeGenerator.hpp"
  39 #include "runtime/stubRoutines.hpp"
  40 #include "vmreg_x86.inline.hpp"
  41 #ifdef COMPILER1
  42 #include "c1/c1_Runtime1.hpp"
  43 #include "runtime/vframeArray.hpp"
  44 #endif
  45 
  46 #ifdef ASSERT
  47 void RegisterMap::check_location_valid() {
  48 }
  49 #endif
  50 
  51 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
  52 
  53 // Profiling/safepoint support
  54 
  55 bool frame::safe_for_sender(JavaThread *thread) {
  56   address   sp = (address)_sp;
  57   address   fp = (address)_fp;
  58   address   unextended_sp = (address)_unextended_sp;
  59 
  60   // consider stack guards when trying to determine "safe" stack pointers
  61   static size_t stack_guard_size = os::uses_stack_guard_pages() ? (StackYellowPages + StackRedPages) * os::vm_page_size() : 0;
  62   size_t usable_stack_size = thread->stack_size() - stack_guard_size;
  63 
  64   // sp must be within the usable part of the stack (not in guards)
  65   bool sp_safe = (sp < thread->stack_base()) &&
  66                  (sp >= thread->stack_base() - usable_stack_size);
  67 
  68 
  69   if (!sp_safe) {
  70     return false;
  71   }
  72 
  73   // unextended sp must be within the stack and above or equal sp
  74   bool unextended_sp_safe = (unextended_sp < thread->stack_base()) &&
  75                             (unextended_sp >= sp);
  76 
  77   if (!unextended_sp_safe) {
  78     return false;
  79   }
  80 
  81   // an fp must be within the stack and above (but not equal) sp
  82   // second evaluation on fp+ is added to handle situation where fp is -1
  83   bool fp_safe = (fp < thread->stack_base() && (fp > sp) && (((fp + (return_addr_offset * sizeof(void*))) < thread->stack_base())));
  84 
  85   // We know sp/unextended_sp are safe only fp is questionable here
  86 
  87   // If the current frame is known to the code cache then we can attempt to
  88   // to construct the sender and do some validation of it. This goes a long way
  89   // toward eliminating issues when we get in frame construction code
  90 
  91   if (_cb != NULL ) {
  92 
  93     // First check if frame is complete and tester is reliable
  94     // Unfortunately we can only check frame complete for runtime stubs and nmethod
  95     // other generic buffer blobs are more problematic so we just assume they are
  96     // ok. adapter blobs never have a frame complete and are never ok.
  97 
  98     if (!_cb->is_frame_complete_at(_pc)) {
  99       if (_cb->is_nmethod() || _cb->is_adapter_blob() || _cb->is_runtime_stub()) {
 100         return false;
 101       }
 102     }
 103 
 104     // Could just be some random pointer within the codeBlob
 105     if (!_cb->code_contains(_pc)) {
 106       return false;
 107     }
 108 
 109     // Entry frame checks
 110     if (is_entry_frame()) {
 111       // an entry frame must have a valid fp.
 112 
 113       if (!fp_safe) return false;
 114 
 115       // Validate the JavaCallWrapper an entry frame must have
 116 
 117       address jcw = (address)entry_frame_call_wrapper();
 118 
 119       bool jcw_safe = (jcw < thread->stack_base()) && ( jcw > fp);
 120 
 121       return jcw_safe;
 122 
 123     }
 124 
 125     intptr_t* sender_sp = NULL;
 126     address   sender_pc = NULL;
 127 
 128     if (is_interpreted_frame()) {
 129       // fp must be safe
 130       if (!fp_safe) {
 131         return false;
 132       }
 133 
 134       sender_pc = (address) this->fp()[return_addr_offset];
 135       sender_sp = (intptr_t*) addr_at(sender_sp_offset);
 136 
 137     } else {
 138       // must be some sort of compiled/runtime frame
 139       // fp does not have to be safe (although it could be check for c1?)
 140 
 141       // check for a valid frame_size, otherwise we are unlikely to get a valid sender_pc
 142       if (_cb->frame_size() <= 0) {
 143         return false;
 144       }
 145 
 146       sender_sp = _unextended_sp + _cb->frame_size();
 147       // On Intel the return_address is always the word on the stack
 148       sender_pc = (address) *(sender_sp-1);
 149     }
 150 
 151     if (SharedRuntime::is_memento_stack_trace_return_handler(sender_pc)) {
 152       sender_pc = thread->memento_original_return_address();
 153     }
 154 
 155 
 156     // If the potential sender is the interpreter then we can do some more checking
 157     if (Interpreter::contains(sender_pc)) {
 158 
 159       // ebp is always saved in a recognizable place in any code we generate. However
 160       // only if the sender is interpreted/call_stub (c1 too?) are we certain that the saved ebp
 161       // is really a frame pointer.
 162 
 163       intptr_t *saved_fp = (intptr_t*)*(sender_sp - frame::sender_sp_offset);
 164       bool saved_fp_safe = ((address)saved_fp < thread->stack_base()) && (saved_fp > sender_sp);
 165 
 166       if (!saved_fp_safe) {
 167         return false;
 168       }
 169 
 170       // construct the potential sender
 171 
 172       frame sender(thread, sender_sp, saved_fp, sender_pc);
 173 
 174       return sender.is_interpreted_frame_valid(thread);
 175 
 176     }
 177 
 178     // We must always be able to find a recognizable pc
 179     CodeBlob* sender_blob = CodeCache::find_blob_unsafe(sender_pc);
 180     if (sender_pc == NULL ||  sender_blob == NULL) {
 181       return false;
 182     }
 183 
 184     // Could be a zombie method
 185     if (sender_blob->is_zombie() || sender_blob->is_unloaded()) {
 186       return false;
 187     }
 188 
 189     // Could just be some random pointer within the codeBlob
 190     if (!sender_blob->code_contains(sender_pc)) {
 191       return false;
 192     }
 193 
 194     // We should never be able to see an adapter if the current frame is something from code cache
 195     if (sender_blob->is_adapter_blob()) {
 196       return false;
 197     }
 198 
 199     // Could be the call_stub
 200     if (StubRoutines::returns_to_call_stub(sender_pc)) {
 201       intptr_t *saved_fp = (intptr_t*)*(sender_sp - frame::sender_sp_offset);
 202       bool saved_fp_safe = ((address)saved_fp < thread->stack_base()) && (saved_fp > sender_sp);
 203 
 204       if (!saved_fp_safe) {
 205         return false;
 206       }
 207 
 208       // construct the potential sender
 209 
 210       frame sender(thread, sender_sp, saved_fp, sender_pc);
 211 
 212       // Validate the JavaCallWrapper an entry frame must have
 213       address jcw = (address)sender.entry_frame_call_wrapper();
 214 
 215       bool jcw_safe = (jcw < thread->stack_base()) && ( jcw > (address)sender.fp());
 216 
 217       return jcw_safe;
 218     }
 219 
 220     if (sender_blob->is_nmethod()) {
 221         nmethod* nm = sender_blob->as_nmethod_or_null();
 222         if (nm != NULL) {
 223             if (nm->is_deopt_mh_entry(sender_pc) || nm->is_deopt_entry(sender_pc) ||
 224                 nm->method()->is_method_handle_intrinsic()) {
 225                 return false;
 226             }
 227         }
 228     }
 229 
 230     // If the frame size is 0 something (or less) is bad because every nmethod has a non-zero frame size
 231     // because the return address counts against the callee's frame.
 232 
 233     if (sender_blob->frame_size() <= 0) {
 234       assert(!sender_blob->is_nmethod(), "should count return address at least");
 235       return false;
 236     }
 237 
 238     // We should never be able to see anything here except an nmethod. If something in the
 239     // code cache (current frame) is called by an entity within the code cache that entity
 240     // should not be anything but the call stub (already covered), the interpreter (already covered)
 241     // or an nmethod.
 242 
 243     if (!sender_blob->is_nmethod()) {
 244         return false;
 245     }
 246 
 247     // Could put some more validation for the potential non-interpreted sender
 248     // frame we'd create by calling sender if I could think of any. Wait for next crash in forte...
 249 
 250     // One idea is seeing if the sender_pc we have is one that we'd expect to call to current cb
 251 
 252     // We've validated the potential sender that would be created
 253     return true;
 254   }
 255 
 256   // Must be native-compiled frame. Since sender will try and use fp to find
 257   // linkages it must be safe
 258 
 259   if (!fp_safe) {
 260     return false;
 261   }
 262 
 263   // Will the pc we fetch be non-zero (which we'll find at the oldest frame)
 264 
 265   if ( (address) this->fp()[return_addr_offset] == NULL) return false;
 266 
 267 
 268   // could try and do some more potential verification of native frame if we could think of some...
 269 
 270   return true;
 271 
 272 }
 273 
 274 
 275 void frame::patch_pc(Thread* thread, address pc) {
 276   address* pc_addr = &(((address*) sp())[-1]);
 277   if (TracePcPatching) {
 278     tty->print_cr("patch_pc at address " INTPTR_FORMAT " [" INTPTR_FORMAT " -> " INTPTR_FORMAT "]",
 279                   pc_addr, *pc_addr, pc);
 280   }
 281   assert(!SharedRuntime::is_memento_stack_trace_return_handler(pc), "new return address must not be memento return handler");
 282   if (SharedRuntime::is_memento_stack_trace_return_handler(*pc_addr)) {
 283     pc_addr = &(thread->memento_original_return_address());
 284     assert(*pc_addr != NULL, "memento original return address must be set");
 285   }
 286   // Either the return address is the original one or we are going to
 287   // patch in the same address that's already there.
 288   assert(_pc == *pc_addr || pc == *pc_addr, "must be");
 289   *pc_addr = pc;
 290   _cb = CodeCache::find_blob(pc);
 291   address original_pc = nmethod::get_deopt_original_pc(this);
 292   if (original_pc != NULL) {
 293     assert(original_pc == _pc, "expected original PC to be stored before patching");
 294     _deopt_state = is_deoptimized;
 295     // leave _pc as is
 296   } else {
 297     _deopt_state = not_deoptimized;
 298     _pc = pc;
 299   }
 300 }
 301 
 302 bool frame::is_interpreted_frame() const  {
 303   return Interpreter::contains(pc());
 304 }
 305 
 306 int frame::frame_size(RegisterMap* map) const {
 307   frame sender = this->sender(map);
 308   return sender.sp() - sp();
 309 }
 310 
 311 intptr_t* frame::entry_frame_argument_at(int offset) const {
 312   // convert offset to index to deal with tsi
 313   int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize);
 314   // Entry frame's arguments are always in relation to unextended_sp()
 315   return &unextended_sp()[index];
 316 }
 317 
 318 // sender_sp
 319 #ifdef CC_INTERP
 320 intptr_t* frame::interpreter_frame_sender_sp() const {
 321   assert(is_interpreted_frame(), "interpreted frame expected");
 322   // QQQ why does this specialize method exist if frame::sender_sp() does same thing?
 323   // seems odd and if we always know interpreted vs. non then sender_sp() is really
 324   // doing too much work.
 325   return get_interpreterState()->sender_sp();
 326 }
 327 
 328 // monitor elements
 329 
 330 BasicObjectLock* frame::interpreter_frame_monitor_begin() const {
 331   return get_interpreterState()->monitor_base();
 332 }
 333 
 334 BasicObjectLock* frame::interpreter_frame_monitor_end() const {
 335   return (BasicObjectLock*) get_interpreterState()->stack_base();
 336 }
 337 
 338 #else // CC_INTERP
 339 
 340 intptr_t* frame::interpreter_frame_sender_sp() const {
 341   assert(is_interpreted_frame(), "interpreted frame expected");
 342   return (intptr_t*) at(interpreter_frame_sender_sp_offset);
 343 }
 344 
 345 void frame::set_interpreter_frame_sender_sp(intptr_t* sender_sp) {
 346   assert(is_interpreted_frame(), "interpreted frame expected");
 347   ptr_at_put(interpreter_frame_sender_sp_offset, (intptr_t) sender_sp);
 348 }
 349 
 350 
 351 // monitor elements
 352 
 353 BasicObjectLock* frame::interpreter_frame_monitor_begin() const {
 354   return (BasicObjectLock*) addr_at(interpreter_frame_monitor_block_bottom_offset);
 355 }
 356 
 357 BasicObjectLock* frame::interpreter_frame_monitor_end() const {
 358   BasicObjectLock* result = (BasicObjectLock*) *addr_at(interpreter_frame_monitor_block_top_offset);
 359   // make sure the pointer points inside the frame
 360   assert(sp() <= (intptr_t*) result, "monitor end should be above the stack pointer");
 361   assert((intptr_t*) result < fp(),  "monitor end should be strictly below the frame pointer");
 362   return result;
 363 }
 364 
 365 void frame::interpreter_frame_set_monitor_end(BasicObjectLock* value) {
 366   *((BasicObjectLock**)addr_at(interpreter_frame_monitor_block_top_offset)) = value;
 367 }
 368 
 369 // Used by template based interpreter deoptimization
 370 void frame::interpreter_frame_set_last_sp(intptr_t* sp) {
 371     *((intptr_t**)addr_at(interpreter_frame_last_sp_offset)) = sp;
 372 }
 373 #endif // CC_INTERP
 374 
 375 frame frame::sender_for_entry_frame(RegisterMap* map) const {
 376   assert(map != NULL, "map must be set");
 377   // Java frame called from C; skip all C frames and return top C
 378   // frame of that chunk as the sender
 379   JavaFrameAnchor* jfa = entry_frame_call_wrapper()->anchor();
 380   assert(!entry_frame_is_first(), "next Java fp must be non zero");
 381   assert(jfa->last_Java_sp() > sp(), "must be above this frame on stack");
 382   map->clear();
 383   assert(map->include_argument_oops(), "should be set by clear");
 384   if (jfa->last_Java_pc() != NULL ) {
 385     frame fr(map->thread(), jfa->last_Java_sp(), jfa->last_Java_fp(), jfa->last_Java_pc());
 386     return fr;
 387   }
 388   frame fr(map->thread(), jfa->last_Java_sp(), jfa->last_Java_fp());
 389   return fr;
 390 }
 391 
 392 //------------------------------------------------------------------------------
 393 // frame::verify_deopt_original_pc
 394 //
 395 // Verifies the calculated original PC of a deoptimization PC for the
 396 // given unextended SP.
 397 #ifdef ASSERT
 398 void frame::verify_deopt_original_pc(nmethod* nm, intptr_t* unextended_sp) {
 399   frame fr;
 400 
 401   // This is ugly but it's better than to change {get,set}_original_pc
 402   // to take an SP value as argument.  And it's only a debugging
 403   // method anyway.
 404   fr._unextended_sp = unextended_sp;
 405 
 406   address original_pc = nm->get_original_pc(&fr);
 407   assert(nm->insts_contains(original_pc), "original PC must be in nmethod");
 408 }
 409 #endif
 410 
 411 //------------------------------------------------------------------------------
 412 // frame::adjust_unextended_sp
 413 void frame::adjust_unextended_sp() {
 414   // On x86, sites calling method handle intrinsics and lambda forms are treated
 415   // as any other call site. Therefore, no special action is needed when we are
 416   // returning to any of these call sites.
 417 
 418   nmethod* sender_nm = (_cb == NULL) ? NULL : _cb->as_nmethod_or_null();
 419   if (sender_nm != NULL) {
 420     // If the sender PC is a deoptimization point, get the original PC.
 421     if (sender_nm->is_deopt_entry(_pc) ||
 422         sender_nm->is_deopt_mh_entry(_pc)) {
 423       DEBUG_ONLY(verify_deopt_original_pc(sender_nm, _unextended_sp));
 424     }
 425   }
 426 }
 427 
 428 //------------------------------------------------------------------------------
 429 // frame::update_map_with_saved_link
 430 void frame::update_map_with_saved_link(RegisterMap* map, intptr_t** link_addr) {
 431   // The interpreter and compiler(s) always save EBP/RBP in a known
 432   // location on entry. We must record where that location is
 433   // so this if EBP/RBP was live on callout from c2 we can find
 434   // the saved copy no matter what it called.
 435 
 436   // Since the interpreter always saves EBP/RBP if we record where it is then
 437   // we don't have to always save EBP/RBP on entry and exit to c2 compiled
 438   // code, on entry will be enough.
 439   map->set_location(rbp->as_VMReg(), (address) link_addr);
 440 #ifdef AMD64
 441   // this is weird "H" ought to be at a higher address however the
 442   // oopMaps seems to have the "H" regs at the same address and the
 443   // vanilla register.
 444   // XXXX make this go away
 445   if (true) {
 446     map->set_location(rbp->as_VMReg()->next(), (address) link_addr);
 447   }
 448 #endif // AMD64
 449 }
 450 
 451 
 452 //------------------------------------------------------------------------------
 453 // frame::sender_for_interpreter_frame
 454 frame frame::sender_for_interpreter_frame(RegisterMap* map) const {
 455   // SP is the raw SP from the sender after adapter or interpreter
 456   // extension.
 457   intptr_t* sender_sp = this->sender_sp();
 458 
 459   // This is the sp before any possible extension (adapter/locals).
 460   intptr_t* unextended_sp = interpreter_frame_sender_sp();
 461 
 462 #ifdef COMPILER2
 463   if (map->update_map()) {
 464     update_map_with_saved_link(map, (intptr_t**) addr_at(link_offset));
 465   }
 466 #endif // COMPILER2
 467 
 468   return frame(map->thread(), sender_sp, unextended_sp, link(), sender_pc());
 469 }
 470 
 471 
 472 //------------------------------------------------------------------------------
 473 // frame::sender_for_compiled_frame
 474 frame frame::sender_for_compiled_frame(RegisterMap* map) const {
 475   assert(map != NULL, "map must be set");
 476 
 477   // frame owned by optimizing compiler
 478   assert(_cb->frame_size() >= 0, "must have non-zero frame size");
 479   intptr_t* sender_sp = unextended_sp() + _cb->frame_size();
 480   intptr_t* unextended_sp = sender_sp;
 481 
 482   // On Intel the return_address is always the word on the stack
 483   address sender_pc = (address) *(sender_sp-1);
 484 
 485   // This is the saved value of EBP which may or may not really be an FP.
 486   // It is only an FP if the sender is an interpreter frame (or C1?).
 487   intptr_t** saved_fp_addr = (intptr_t**) (sender_sp - frame::sender_sp_offset);
 488 
 489   if (map->update_map()) {
 490     // Tell GC to use argument oopmaps for some runtime stubs that need it.
 491     // For C1, the runtime stub might not have oop maps, so set this flag
 492     // outside of update_register_map.
 493     map->set_include_argument_oops(_cb->caller_must_gc_arguments(map->thread()));
 494     if (_cb->oop_maps() != NULL) {
 495       OopMapSet::update_register_map(this, map);
 496     }
 497 
 498     // Since the prolog does the save and restore of EBP there is no oopmap
 499     // for it so we must fill in its location as if there was an oopmap entry
 500     // since if our caller was compiled code there could be live jvm state in it.
 501     update_map_with_saved_link(map, saved_fp_addr);
 502   }
 503 
 504   assert(sender_sp != sp(), "must have changed");
 505   return frame(map->thread(), sender_sp, unextended_sp, *saved_fp_addr, sender_pc);
 506 }
 507 
 508 
 509 //------------------------------------------------------------------------------
 510 // frame::sender
 511 frame frame::sender(RegisterMap* map) const {
 512   // Default is we done have to follow them. The sender_for_xxx will
 513   // update it accordingly
 514   map->set_include_argument_oops(false);
 515 
 516   if (is_entry_frame())       return sender_for_entry_frame(map);
 517   if (is_interpreted_frame()) return sender_for_interpreter_frame(map);
 518   assert(_cb == CodeCache::find_blob(pc()),"Must be the same");
 519 
 520   if (_cb != NULL) {
 521     return sender_for_compiled_frame(map);
 522   }
 523   // Must be native-compiled frame, i.e. the marshaling code for native
 524   // methods that exists in the core system.
 525   return frame(map->thread(), sender_sp(), link(), sender_pc());
 526 }
 527 
 528 
 529 bool frame::interpreter_frame_equals_unpacked_fp(intptr_t* fp) {
 530   assert(is_interpreted_frame(), "must be interpreter frame");
 531   Method* method = interpreter_frame_method();
 532   // When unpacking an optimized frame the frame pointer is
 533   // adjusted with:
 534   int diff = (method->max_locals() - method->size_of_parameters()) *
 535              Interpreter::stackElementWords;
 536   return _fp == (fp - diff);
 537 }
 538 
 539 void frame::pd_gc_epilog() {
 540   // nothing done here now
 541 }
 542 
 543 bool frame::is_interpreted_frame_valid(JavaThread* thread) const {
 544 // QQQ
 545 #ifdef CC_INTERP
 546 #else
 547   assert(is_interpreted_frame(), "Not an interpreted frame");
 548   // These are reasonable sanity checks
 549   if (fp() == 0 || (intptr_t(fp()) & (wordSize-1)) != 0) {
 550     return false;
 551   }
 552   if (sp() == 0 || (intptr_t(sp()) & (wordSize-1)) != 0) {
 553     return false;
 554   }
 555   if (fp() + interpreter_frame_initial_sp_offset < sp()) {
 556     return false;
 557   }
 558   // These are hacks to keep us out of trouble.
 559   // The problem with these is that they mask other problems
 560   if (fp() <= sp()) {        // this attempts to deal with unsigned comparison above
 561     return false;
 562   }
 563 
 564   // do some validation of frame elements
 565 
 566   // first the method
 567 
 568   Method* m = *interpreter_frame_method_addr();
 569 
 570   // validate the method we'd find in this potential sender
 571   if (!m->is_valid_method()) return false;
 572 
 573   // stack frames shouldn't be much larger than max_stack elements
 574 
 575   if (fp() - sp() > 1024 + m->max_stack()*Interpreter::stackElementSize) {
 576     return false;
 577   }
 578 
 579   // validate bci/bcx
 580 
 581   intptr_t  bcx    = interpreter_frame_bcx();
 582   if (m->validate_bci_from_bcx(bcx) < 0) {
 583     return false;
 584   }
 585 
 586   // validate ConstantPoolCache*
 587   ConstantPoolCache* cp = *interpreter_frame_cache_addr();
 588   if (cp == NULL || !cp->is_metaspace_object()) return false;
 589 
 590   // validate locals
 591 
 592   address locals =  (address) *interpreter_frame_locals_addr();
 593 
 594   if (locals > thread->stack_base() || locals < (address) fp()) return false;
 595 
 596   // We'd have to be pretty unlucky to be mislead at this point
 597 
 598 #endif // CC_INTERP
 599   return true;
 600 }
 601 
 602 BasicType frame::interpreter_frame_result(oop* oop_result, jvalue* value_result) {
 603 #ifdef CC_INTERP
 604   // Needed for JVMTI. The result should always be in the
 605   // interpreterState object
 606   interpreterState istate = get_interpreterState();
 607 #endif // CC_INTERP
 608   assert(is_interpreted_frame(), "interpreted frame expected");
 609   Method* method = interpreter_frame_method();
 610   BasicType type = method->result_type();
 611 
 612   intptr_t* tos_addr;
 613   if (method->is_native()) {
 614     // Prior to calling into the runtime to report the method_exit the possible
 615     // return value is pushed to the native stack. If the result is a jfloat/jdouble
 616     // then ST0 is saved before EAX/EDX. See the note in generate_native_result
 617     tos_addr = (intptr_t*)sp();
 618     if (type == T_FLOAT || type == T_DOUBLE) {
 619     // QQQ seems like this code is equivalent on the two platforms
 620 #ifdef AMD64
 621       // This is times two because we do a push(ltos) after pushing XMM0
 622       // and that takes two interpreter stack slots.
 623       tos_addr += 2 * Interpreter::stackElementWords;
 624 #else
 625       tos_addr += 2;
 626 #endif // AMD64
 627     }
 628   } else {
 629     tos_addr = (intptr_t*)interpreter_frame_tos_address();
 630   }
 631 
 632   switch (type) {
 633     case T_OBJECT  :
 634     case T_ARRAY   : {
 635       oop obj;
 636       if (method->is_native()) {
 637 #ifdef CC_INTERP
 638         obj = istate->_oop_temp;
 639 #else
 640         obj = cast_to_oop(at(interpreter_frame_oop_temp_offset));
 641 #endif // CC_INTERP
 642       } else {
 643         oop* obj_p = (oop*)tos_addr;
 644         obj = (obj_p == NULL) ? (oop)NULL : *obj_p;
 645       }
 646       assert(obj == NULL || Universe::heap()->is_in(obj), "sanity check");
 647       *oop_result = obj;
 648       break;
 649     }
 650     case T_BOOLEAN : value_result->z = *(jboolean*)tos_addr; break;
 651     case T_BYTE    : value_result->b = *(jbyte*)tos_addr; break;
 652     case T_CHAR    : value_result->c = *(jchar*)tos_addr; break;
 653     case T_SHORT   : value_result->s = *(jshort*)tos_addr; break;
 654     case T_INT     : value_result->i = *(jint*)tos_addr; break;
 655     case T_LONG    : value_result->j = *(jlong*)tos_addr; break;
 656     case T_FLOAT   : {
 657 #ifdef AMD64
 658         value_result->f = *(jfloat*)tos_addr;
 659 #else
 660       if (method->is_native()) {
 661         jdouble d = *(jdouble*)tos_addr;  // Result was in ST0 so need to convert to jfloat
 662         value_result->f = (jfloat)d;
 663       } else {
 664         value_result->f = *(jfloat*)tos_addr;
 665       }
 666 #endif // AMD64
 667       break;
 668     }
 669     case T_DOUBLE  : value_result->d = *(jdouble*)tos_addr; break;
 670     case T_VOID    : /* Nothing to do */ break;
 671     default        : ShouldNotReachHere();
 672   }
 673 
 674   return type;
 675 }
 676 
 677 
 678 intptr_t* frame::interpreter_frame_tos_at(jint offset) const {
 679   int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize);
 680   return &interpreter_frame_tos_address()[index];
 681 }
 682 
 683 #ifndef PRODUCT
 684 
 685 #define DESCRIBE_FP_OFFSET(name) \
 686   values.describe(frame_no, fp() + frame::name##_offset, #name)
 687 
 688 void frame::describe_pd(FrameValues& values, int frame_no) {
 689   if (is_interpreted_frame()) {
 690     DESCRIBE_FP_OFFSET(interpreter_frame_sender_sp);
 691     DESCRIBE_FP_OFFSET(interpreter_frame_last_sp);
 692     DESCRIBE_FP_OFFSET(interpreter_frame_method);
 693     DESCRIBE_FP_OFFSET(interpreter_frame_mdx);
 694     DESCRIBE_FP_OFFSET(interpreter_frame_cache);
 695     DESCRIBE_FP_OFFSET(interpreter_frame_locals);
 696     DESCRIBE_FP_OFFSET(interpreter_frame_bcx);
 697     DESCRIBE_FP_OFFSET(interpreter_frame_initial_sp);
 698   }
 699 }
 700 #endif
 701 
 702 intptr_t *frame::initial_deoptimization_info() {
 703   // used to reset the saved FP
 704   return fp();
 705 }
 706 
 707 intptr_t* frame::real_fp() const {
 708   if (_cb != NULL) {
 709     // use the frame size if valid
 710     int size = _cb->frame_size();
 711     if (size > 0) {
 712       return unextended_sp() + size;
 713     }
 714   }
 715   // else rely on fp()
 716   assert(! is_compiled_frame(), "unknown compiled frame size");
 717   return fp();
 718 }
 719 
 720 #ifndef PRODUCT
 721 // This is a generic constructor which is only used by pns() in debug.cpp.
 722 frame::frame(Thread* thread, void* sp, void* fp, void* pc) {
 723   init(thread, (intptr_t*)sp, (intptr_t*)fp, (address)pc);
 724 }
 725 #endif