1 /* 2 * Copyright (c) 1997, 2016, 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 "interpreter/interpreter.hpp" 28 #include "memory/resourceArea.hpp" 29 #include "oops/markOop.hpp" 30 #include "oops/method.hpp" 31 #include "oops/oop.inline.hpp" 32 #include "prims/methodHandles.hpp" 33 #include "runtime/frame.inline.hpp" 34 #include "runtime/handles.inline.hpp" 35 #include "runtime/javaCalls.hpp" 36 #include "runtime/monitorChunk.hpp" 37 #include "runtime/signature.hpp" 38 #include "runtime/stubCodeGenerator.hpp" 39 #include "runtime/stubRoutines.hpp" 40 #include "vmreg_sparc.inline.hpp" 41 #ifdef COMPILER1 42 #include "c1/c1_Runtime1.hpp" 43 #include "runtime/vframeArray.hpp" 44 #endif 45 46 void RegisterMap::pd_clear() { 47 if (_thread->has_last_Java_frame()) { 48 frame fr = _thread->last_frame(); 49 _window = fr.sp(); 50 } else { 51 _window = NULL; 52 } 53 _younger_window = NULL; 54 } 55 56 57 // Unified register numbering scheme: each 32-bits counts as a register 58 // number, so all the V9 registers take 2 slots. 59 const static int R_L_nums[] = {0+040,2+040,4+040,6+040,8+040,10+040,12+040,14+040}; 60 const static int R_I_nums[] = {0+060,2+060,4+060,6+060,8+060,10+060,12+060,14+060}; 61 const static int R_O_nums[] = {0+020,2+020,4+020,6+020,8+020,10+020,12+020,14+020}; 62 const static int R_G_nums[] = {0+000,2+000,4+000,6+000,8+000,10+000,12+000,14+000}; 63 static RegisterMap::LocationValidType bad_mask = 0; 64 static RegisterMap::LocationValidType R_LIO_mask = 0; 65 static bool register_map_inited = false; 66 67 static void register_map_init() { 68 if (!register_map_inited) { 69 register_map_inited = true; 70 int i; 71 for (i = 0; i < 8; i++) { 72 assert(R_L_nums[i] < RegisterMap::location_valid_type_size, "in first chunk"); 73 assert(R_I_nums[i] < RegisterMap::location_valid_type_size, "in first chunk"); 74 assert(R_O_nums[i] < RegisterMap::location_valid_type_size, "in first chunk"); 75 assert(R_G_nums[i] < RegisterMap::location_valid_type_size, "in first chunk"); 76 } 77 78 bad_mask |= (1LL << R_O_nums[6]); // SP 79 bad_mask |= (1LL << R_O_nums[7]); // cPC 80 bad_mask |= (1LL << R_I_nums[6]); // FP 81 bad_mask |= (1LL << R_I_nums[7]); // rPC 82 bad_mask |= (1LL << R_G_nums[2]); // TLS 83 bad_mask |= (1LL << R_G_nums[7]); // reserved by libthread 84 85 for (i = 0; i < 8; i++) { 86 R_LIO_mask |= (1LL << R_L_nums[i]); 87 R_LIO_mask |= (1LL << R_I_nums[i]); 88 R_LIO_mask |= (1LL << R_O_nums[i]); 89 } 90 } 91 } 92 93 94 address RegisterMap::pd_location(VMReg regname) const { 95 register_map_init(); 96 97 assert(regname->is_reg(), "sanity check"); 98 // Only the GPRs get handled this way 99 if( !regname->is_Register()) 100 return NULL; 101 102 // don't talk about bad registers 103 if ((bad_mask & ((LocationValidType)1 << regname->value())) != 0) { 104 return NULL; 105 } 106 107 // Convert to a GPR 108 Register reg; 109 int second_word = 0; 110 // 32-bit registers for in, out and local 111 if (!regname->is_concrete()) { 112 // HMM ought to return NULL for any non-concrete (odd) vmreg 113 // this all tied up in the fact we put out double oopMaps for 114 // register locations. When that is fixed we'd will return NULL 115 // (or assert here). 116 reg = regname->prev()->as_Register(); 117 #ifdef _LP64 118 second_word = sizeof(jint); 119 #else 120 return NULL; 121 #endif // _LP64 122 } else { 123 reg = regname->as_Register(); 124 } 125 if (reg->is_out()) { 126 assert(_younger_window != NULL, "Younger window should be available"); 127 return second_word + (address)&_younger_window[reg->after_save()->sp_offset_in_saved_window()]; 128 } 129 if (reg->is_local() || reg->is_in()) { 130 assert(_window != NULL, "Window should be available"); 131 return second_word + (address)&_window[reg->sp_offset_in_saved_window()]; 132 } 133 // Only the window'd GPRs get handled this way; not the globals. 134 return NULL; 135 } 136 137 138 #ifdef ASSERT 139 void RegisterMap::check_location_valid() { 140 register_map_init(); 141 assert((_location_valid[0] & bad_mask) == 0, "cannot have special locations for SP,FP,TLS,etc."); 142 } 143 #endif 144 145 // We are shifting windows. That means we are moving all %i to %o, 146 // getting rid of all current %l, and keeping all %g. This is only 147 // complicated if any of the location pointers for these are valid. 148 // The normal case is that everything is in its standard register window 149 // home, and _location_valid[0] is zero. In that case, this routine 150 // does exactly nothing. 151 void RegisterMap::shift_individual_registers() { 152 if (!update_map()) return; // this only applies to maps with locations 153 register_map_init(); 154 check_location_valid(); 155 156 LocationValidType lv = _location_valid[0]; 157 LocationValidType lv0 = lv; 158 159 lv &= ~R_LIO_mask; // clear %l, %o, %i regs 160 161 // if we cleared some non-%g locations, we may have to do some shifting 162 if (lv != lv0) { 163 // copy %i0-%i5 to %o0-%o5, if they have special locations 164 // This can happen in within stubs which spill argument registers 165 // around a dynamic link operation, such as resolve_opt_virtual_call. 166 for (int i = 0; i < 8; i++) { 167 if (lv0 & (1LL << R_I_nums[i])) { 168 _location[R_O_nums[i]] = _location[R_I_nums[i]]; 169 lv |= (1LL << R_O_nums[i]); 170 } 171 } 172 } 173 174 _location_valid[0] = lv; 175 check_location_valid(); 176 } 177 178 bool frame::safe_for_sender(JavaThread *thread) { 179 180 address _SP = (address) sp(); 181 address _FP = (address) fp(); 182 address _UNEXTENDED_SP = (address) unextended_sp(); 183 // sp must be within the stack 184 bool sp_safe = (_SP <= thread->stack_base()) && 185 (_SP >= thread->stack_base() - thread->stack_size()); 186 187 if (!sp_safe) { 188 return false; 189 } 190 191 // unextended sp must be within the stack and above or equal sp 192 bool unextended_sp_safe = (_UNEXTENDED_SP <= thread->stack_base()) && 193 (_UNEXTENDED_SP >= _SP); 194 195 if (!unextended_sp_safe) return false; 196 197 // an fp must be within the stack and above (but not equal) sp 198 bool fp_safe = (_FP <= thread->stack_base()) && 199 (_FP > _SP); 200 201 // We know sp/unextended_sp are safe only fp is questionable here 202 203 // If the current frame is known to the code cache then we can attempt to 204 // to construct the sender and do some validation of it. This goes a long way 205 // toward eliminating issues when we get in frame construction code 206 207 if (_cb != NULL ) { 208 209 // First check if frame is complete and tester is reliable 210 // Unfortunately we can only check frame complete for runtime stubs and nmethod 211 // other generic buffer blobs are more problematic so we just assume they are 212 // ok. adapter blobs never have a frame complete and are never ok. 213 214 if (!_cb->is_frame_complete_at(_pc)) { 215 if (_cb->is_compiled() || _cb->is_adapter_blob() || _cb->is_runtime_stub()) { 216 return false; 217 } 218 } 219 220 // Could just be some random pointer within the codeBlob 221 if (!_cb->code_contains(_pc)) { 222 return false; 223 } 224 225 // Entry frame checks 226 if (is_entry_frame()) { 227 // an entry frame must have a valid fp. 228 229 if (!fp_safe) { 230 return false; 231 } 232 return entry_frame_is_safe(thread); 233 } 234 235 intptr_t* younger_sp = sp(); 236 intptr_t* _SENDER_SP = sender_sp(); // sender is actually just _FP 237 bool adjusted_stack = is_interpreted_frame(); 238 239 address sender_pc = (address)younger_sp[I7->sp_offset_in_saved_window()] + pc_return_offset; 240 241 242 // We must always be able to find a recognizable pc 243 CodeBlob* sender_blob = CodeCache::find_blob_unsafe(sender_pc); 244 if (sender_pc == NULL || sender_blob == NULL) { 245 return false; 246 } 247 248 // Could be a zombie method 249 if (sender_blob->is_zombie() || sender_blob->is_unloaded()) { 250 return false; 251 } 252 253 // It should be safe to construct the sender though it might not be valid 254 255 frame sender(_SENDER_SP, younger_sp, adjusted_stack); 256 257 // Do we have a valid fp? 258 address sender_fp = (address) sender.fp(); 259 260 // an fp must be within the stack and above (but not equal) current frame's _FP 261 262 bool sender_fp_safe = (sender_fp <= thread->stack_base()) && 263 (sender_fp > _FP); 264 265 if (!sender_fp_safe) { 266 return false; 267 } 268 269 270 // If the potential sender is the interpreter then we can do some more checking 271 if (Interpreter::contains(sender_pc)) { 272 return sender.is_interpreted_frame_valid(thread); 273 } 274 275 // Could just be some random pointer within the codeBlob 276 if (!sender.cb()->code_contains(sender_pc)) { 277 return false; 278 } 279 280 // We should never be able to see an adapter if the current frame is something from code cache 281 if (sender_blob->is_adapter_blob()) { 282 return false; 283 } 284 285 if (sender.is_entry_frame()) { 286 return sender.entry_frame_is_safe(thread); 287 } 288 289 // If the frame size is 0 something (or less) is bad because every nmethod has a non-zero frame size 290 // because you must allocate window space 291 292 if (sender_blob->frame_size() <= 0) { 293 assert(!sender_blob->is_compiled(), "should count return address at least"); 294 return false; 295 } 296 297 // The sender should positively be an nmethod or call_stub. On sparc we might in fact see something else. 298 // The cause of this is because at a save instruction the O7 we get is a leftover from an earlier 299 // window use. So if a runtime stub creates two frames (common in fastdebug/debug) then we see the 300 // stale pc. So if the sender blob is not something we'd expect we have little choice but to declare 301 // the stack unwalkable. pd_get_top_frame_for_signal_handler tries to recover from this by unwinding 302 // that initial frame and retrying. 303 304 if (!sender_blob->is_compiled()) { 305 return false; 306 } 307 308 // Could put some more validation for the potential non-interpreted sender 309 // frame we'd create by calling sender if I could think of any. Wait for next crash in forte... 310 311 // One idea is seeing if the sender_pc we have is one that we'd expect to call to current cb 312 313 // We've validated the potential sender that would be created 314 315 return true; 316 317 } 318 319 // Must be native-compiled frame. Since sender will try and use fp to find 320 // linkages it must be safe 321 322 if (!fp_safe) return false; 323 324 // could try and do some more potential verification of native frame if we could think of some... 325 326 return true; 327 } 328 329 // constructors 330 331 // Construct an unpatchable, deficient frame 332 void frame::init(intptr_t* sp, address pc, CodeBlob* cb) { 333 #ifdef _LP64 334 assert( (((intptr_t)sp & (wordSize-1)) == 0), "frame constructor passed an invalid sp"); 335 #endif 336 _sp = sp; 337 _younger_sp = NULL; 338 _pc = pc; 339 _cb = cb; 340 _sp_adjustment_by_callee = 0; 341 assert(pc == NULL && cb == NULL || pc != NULL, "can't have a cb and no pc!"); 342 if (_cb == NULL && _pc != NULL ) { 343 _cb = CodeCache::find_blob(_pc); 344 } 345 _deopt_state = unknown; 346 #ifdef ASSERT 347 if ( _cb != NULL && _cb->is_compiled()) { 348 // Without a valid unextended_sp() we can't convert the pc to "original" 349 assert(!((CompiledMethod*)_cb)->is_deopt_pc(_pc), "invariant broken"); 350 } 351 #endif // ASSERT 352 } 353 354 frame::frame(intptr_t* sp, unpatchable_t, address pc, CodeBlob* cb) { 355 init(sp, pc, cb); 356 } 357 358 frame::frame(intptr_t* sp, intptr_t* younger_sp, bool younger_frame_is_interpreted) : 359 _sp(sp), 360 _younger_sp(younger_sp), 361 _deopt_state(unknown), 362 _sp_adjustment_by_callee(0) { 363 if (younger_sp == NULL) { 364 // make a deficient frame which doesn't know where its PC is 365 _pc = NULL; 366 _cb = NULL; 367 } else { 368 _pc = (address)younger_sp[I7->sp_offset_in_saved_window()] + pc_return_offset; 369 assert( (intptr_t*)younger_sp[FP->sp_offset_in_saved_window()] == (intptr_t*)((intptr_t)sp - STACK_BIAS), "younger_sp must be valid"); 370 // Any frame we ever build should always "safe" therefore we should not have to call 371 // find_blob_unsafe 372 // In case of native stubs, the pc retrieved here might be 373 // wrong. (the _last_native_pc will have the right value) 374 // So do not put add any asserts on the _pc here. 375 } 376 377 if (_pc != NULL) 378 _cb = CodeCache::find_blob(_pc); 379 380 // Check for MethodHandle call sites. 381 if (_cb != NULL) { 382 CompiledMethod* nm = _cb->as_compiled_method_or_null(); 383 if (nm != NULL) { 384 if (nm->is_deopt_mh_entry(_pc) || nm->is_method_handle_return(_pc)) { 385 _sp_adjustment_by_callee = (intptr_t*) ((intptr_t) sp[L7_mh_SP_save->sp_offset_in_saved_window()] + STACK_BIAS) - sp; 386 // The SP is already adjusted by this MH call site, don't 387 // overwrite this value with the wrong interpreter value. 388 younger_frame_is_interpreted = false; 389 } 390 } 391 } 392 393 if (younger_frame_is_interpreted) { 394 // compute adjustment to this frame's SP made by its interpreted callee 395 _sp_adjustment_by_callee = (intptr_t*) ((intptr_t) younger_sp[I5_savedSP->sp_offset_in_saved_window()] + STACK_BIAS) - sp; 396 } 397 398 // It is important that the frame is fully constructed when we do 399 // this lookup as get_deopt_original_pc() needs a correct value for 400 // unextended_sp() which uses _sp_adjustment_by_callee. 401 if (_pc != NULL) { 402 address original_pc = CompiledMethod::get_deopt_original_pc(this); 403 if (original_pc != NULL) { 404 _pc = original_pc; 405 _deopt_state = is_deoptimized; 406 } else { 407 _deopt_state = not_deoptimized; 408 } 409 } 410 } 411 412 #ifndef PRODUCT 413 // This is a generic constructor which is only used by pns() in debug.cpp. 414 frame::frame(void* sp, void* fp, void* pc) { 415 init((intptr_t*)sp, (address)pc, NULL); 416 } 417 #endif 418 419 bool frame::is_interpreted_frame() const { 420 return Interpreter::contains(pc()); 421 } 422 423 // sender_sp 424 425 intptr_t* frame::interpreter_frame_sender_sp() const { 426 assert(is_interpreted_frame(), "interpreted frame expected"); 427 return fp(); 428 } 429 430 void frame::set_interpreter_frame_sender_sp(intptr_t* sender_sp) { 431 assert(is_interpreted_frame(), "interpreted frame expected"); 432 Unimplemented(); 433 } 434 435 frame frame::sender_for_entry_frame(RegisterMap *map) const { 436 assert(map != NULL, "map must be set"); 437 // Java frame called from C; skip all C frames and return top C 438 // frame of that chunk as the sender 439 JavaFrameAnchor* jfa = entry_frame_call_wrapper()->anchor(); 440 assert(!entry_frame_is_first(), "next Java fp must be non zero"); 441 assert(jfa->last_Java_sp() > _sp, "must be above this frame on stack"); 442 intptr_t* last_Java_sp = jfa->last_Java_sp(); 443 // Since we are walking the stack now this nested anchor is obviously walkable 444 // even if it wasn't when it was stacked. 445 if (!jfa->walkable()) { 446 // Capture _last_Java_pc (if needed) and mark anchor walkable. 447 jfa->capture_last_Java_pc(_sp); 448 } 449 assert(jfa->last_Java_pc() != NULL, "No captured pc!"); 450 map->clear(); 451 map->make_integer_regs_unsaved(); 452 map->shift_window(last_Java_sp, NULL); 453 assert(map->include_argument_oops(), "should be set by clear"); 454 return frame(last_Java_sp, frame::unpatchable, jfa->last_Java_pc()); 455 } 456 457 frame frame::sender_for_interpreter_frame(RegisterMap *map) const { 458 ShouldNotCallThis(); 459 return sender(map); 460 } 461 462 frame frame::sender_for_compiled_frame(RegisterMap *map) const { 463 ShouldNotCallThis(); 464 return sender(map); 465 } 466 467 frame frame::sender(RegisterMap* map) const { 468 assert(map != NULL, "map must be set"); 469 470 assert(CodeCache::find_blob_unsafe(_pc) == _cb, "inconsistent"); 471 472 // Default is not to follow arguments; update it accordingly below 473 map->set_include_argument_oops(false); 474 475 if (is_entry_frame()) return sender_for_entry_frame(map); 476 477 intptr_t* younger_sp = sp(); 478 intptr_t* sp = sender_sp(); 479 480 // Note: The version of this operation on any platform with callee-save 481 // registers must update the register map (if not null). 482 // In order to do this correctly, the various subtypes of 483 // of frame (interpreted, compiled, glue, native), 484 // must be distinguished. There is no need on SPARC for 485 // such distinctions, because all callee-save registers are 486 // preserved for all frames via SPARC-specific mechanisms. 487 // 488 // *** HOWEVER, *** if and when we make any floating-point 489 // registers callee-saved, then we will have to copy over 490 // the RegisterMap update logic from the Intel code. 491 492 // The constructor of the sender must know whether this frame is interpreted so it can set the 493 // sender's _sp_adjustment_by_callee field. An osr adapter frame was originally 494 // interpreted but its pc is in the code cache (for c1 -> osr_frame_return_id stub), so it must be 495 // explicitly recognized. 496 497 498 bool frame_is_interpreted = is_interpreted_frame(); 499 if (frame_is_interpreted) { 500 map->make_integer_regs_unsaved(); 501 map->shift_window(sp, younger_sp); 502 } else if (_cb != NULL) { 503 // Update the locations of implicitly saved registers to be their 504 // addresses in the register save area. 505 // For %o registers, the addresses of %i registers in the next younger 506 // frame are used. 507 map->shift_window(sp, younger_sp); 508 if (map->update_map()) { 509 // Tell GC to use argument oopmaps for some runtime stubs that need it. 510 // For C1, the runtime stub might not have oop maps, so set this flag 511 // outside of update_register_map. 512 map->set_include_argument_oops(_cb->caller_must_gc_arguments(map->thread())); 513 if (_cb->oop_maps() != NULL) { 514 OopMapSet::update_register_map(this, map); 515 } 516 } 517 } 518 return frame(sp, younger_sp, frame_is_interpreted); 519 } 520 521 522 void frame::patch_pc(Thread* thread, address pc) { 523 if(thread == Thread::current()) { 524 StubRoutines::Sparc::flush_callers_register_windows_func()(); 525 } 526 if (TracePcPatching) { 527 // QQQ this assert is invalid (or too strong anyway) sice _pc could 528 // be original pc and frame could have the deopt pc. 529 // assert(_pc == *O7_addr() + pc_return_offset, "frame has wrong pc"); 530 tty->print_cr("patch_pc at address " INTPTR_FORMAT " [" INTPTR_FORMAT " -> " INTPTR_FORMAT "]", 531 p2i(O7_addr()), p2i(_pc), p2i(pc)); 532 } 533 _cb = CodeCache::find_blob(pc); 534 *O7_addr() = pc - pc_return_offset; 535 _cb = CodeCache::find_blob(_pc); 536 address original_pc = CompiledMethod::get_deopt_original_pc(this); 537 if (original_pc != NULL) { 538 assert(original_pc == _pc, "expected original to be stored before patching"); 539 _deopt_state = is_deoptimized; 540 } else { 541 _deopt_state = not_deoptimized; 542 } 543 } 544 545 546 static bool sp_is_valid(intptr_t* old_sp, intptr_t* young_sp, intptr_t* sp) { 547 return (((intptr_t)sp & (2*wordSize-1)) == 0 && 548 sp <= old_sp && 549 sp >= young_sp); 550 } 551 552 553 /* 554 Find the (biased) sp that is just younger than old_sp starting at sp. 555 If not found return NULL. Register windows are assumed to be flushed. 556 */ 557 intptr_t* frame::next_younger_sp_or_null(intptr_t* old_sp, intptr_t* sp) { 558 559 intptr_t* previous_sp = NULL; 560 intptr_t* orig_sp = sp; 561 562 int max_frames = (old_sp - sp) / 16; // Minimum frame size is 16 563 int max_frame2 = max_frames; 564 while(sp != old_sp && sp_is_valid(old_sp, orig_sp, sp)) { 565 if (max_frames-- <= 0) 566 // too many frames have gone by; invalid parameters given to this function 567 break; 568 previous_sp = sp; 569 sp = (intptr_t*)sp[FP->sp_offset_in_saved_window()]; 570 sp = (intptr_t*)((intptr_t)sp + STACK_BIAS); 571 } 572 573 return (sp == old_sp ? previous_sp : NULL); 574 } 575 576 /* 577 Determine if "sp" is a valid stack pointer. "sp" is assumed to be younger than 578 "valid_sp". So if "sp" is valid itself then it should be possible to walk frames 579 from "sp" to "valid_sp". The assumption is that the registers windows for the 580 thread stack in question are flushed. 581 */ 582 bool frame::is_valid_stack_pointer(intptr_t* valid_sp, intptr_t* sp) { 583 return next_younger_sp_or_null(valid_sp, sp) != NULL; 584 } 585 586 bool frame::is_interpreted_frame_valid(JavaThread* thread) const { 587 assert(is_interpreted_frame(), "Not an interpreted frame"); 588 // These are reasonable sanity checks 589 if (fp() == 0 || (intptr_t(fp()) & (2*wordSize-1)) != 0) { 590 return false; 591 } 592 if (sp() == 0 || (intptr_t(sp()) & (2*wordSize-1)) != 0) { 593 return false; 594 } 595 596 const intptr_t interpreter_frame_initial_sp_offset = interpreter_frame_vm_local_words; 597 if (fp() + interpreter_frame_initial_sp_offset < sp()) { 598 return false; 599 } 600 // These are hacks to keep us out of trouble. 601 // The problem with these is that they mask other problems 602 if (fp() <= sp()) { // this attempts to deal with unsigned comparison above 603 return false; 604 } 605 // do some validation of frame elements 606 607 // first the method 608 609 Method* m = *interpreter_frame_method_addr(); 610 611 // validate the method we'd find in this potential sender 612 if (!m->is_valid_method()) return false; 613 614 // stack frames shouldn't be much larger than max_stack elements 615 616 if (fp() - unextended_sp() > 1024 + m->max_stack()*Interpreter::stackElementSize) { 617 return false; 618 } 619 620 // validate bci/bcp 621 622 address bcp = interpreter_frame_bcp(); 623 if (m->validate_bci_from_bcp(bcp) < 0) { 624 return false; 625 } 626 627 // validate ConstantPoolCache* 628 ConstantPoolCache* cp = *interpreter_frame_cache_addr(); 629 if (cp == NULL || !cp->is_metaspace_object()) return false; 630 631 // validate locals 632 633 address locals = (address) *interpreter_frame_locals_addr(); 634 635 if (locals > thread->stack_base() || locals < (address) fp()) return false; 636 637 // We'd have to be pretty unlucky to be mislead at this point 638 return true; 639 } 640 641 642 // Windows have been flushed on entry (but not marked). Capture the pc that 643 // is the return address to the frame that contains "sp" as its stack pointer. 644 // This pc resides in the called of the frame corresponding to "sp". 645 // As a side effect we mark this JavaFrameAnchor as having flushed the windows. 646 // This side effect lets us mark stacked JavaFrameAnchors (stacked in the 647 // call_helper) as flushed when we have flushed the windows for the most 648 // recent (i.e. current) JavaFrameAnchor. This saves useless flushing calls 649 // and lets us find the pc just once rather than multiple times as it did 650 // in the bad old _post_Java_state days. 651 // 652 void JavaFrameAnchor::capture_last_Java_pc(intptr_t* sp) { 653 if (last_Java_sp() != NULL && last_Java_pc() == NULL) { 654 // try and find the sp just younger than _last_Java_sp 655 intptr_t* _post_Java_sp = frame::next_younger_sp_or_null(last_Java_sp(), sp); 656 // Really this should never fail otherwise VM call must have non-standard 657 // frame linkage (bad) or stack is not properly flushed (worse). 658 guarantee(_post_Java_sp != NULL, "bad stack!"); 659 _last_Java_pc = (address) _post_Java_sp[ I7->sp_offset_in_saved_window()] + frame::pc_return_offset; 660 661 } 662 set_window_flushed(); 663 } 664 665 void JavaFrameAnchor::make_walkable(JavaThread* thread) { 666 if (walkable()) return; 667 // Eventually make an assert 668 guarantee(Thread::current() == (Thread*)thread, "only current thread can flush its registers"); 669 // We always flush in case the profiler wants it but we won't mark 670 // the windows as flushed unless we have a last_Java_frame 671 intptr_t* sp = StubRoutines::Sparc::flush_callers_register_windows_func()(); 672 if (last_Java_sp() != NULL ) { 673 capture_last_Java_pc(sp); 674 } 675 } 676 677 intptr_t* frame::entry_frame_argument_at(int offset) const { 678 // convert offset to index to deal with tsi 679 int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize); 680 681 intptr_t* LSP = (intptr_t*) sp()[Lentry_args->sp_offset_in_saved_window()]; 682 return &LSP[index+1]; 683 } 684 685 686 BasicType frame::interpreter_frame_result(oop* oop_result, jvalue* value_result) { 687 assert(is_interpreted_frame(), "interpreted frame expected"); 688 Method* method = interpreter_frame_method(); 689 BasicType type = method->result_type(); 690 691 if (method->is_native()) { 692 // Prior to notifying the runtime of the method_exit the possible result 693 // value is saved to l_scratch and d_scratch. 694 695 intptr_t* l_scratch = fp() + interpreter_frame_l_scratch_fp_offset; 696 intptr_t* d_scratch = fp() + interpreter_frame_d_scratch_fp_offset; 697 698 address l_addr = (address)l_scratch; 699 #ifdef _LP64 700 // On 64-bit the result for 1/8/16/32-bit result types is in the other 701 // word half 702 l_addr += wordSize/2; 703 #endif 704 705 switch (type) { 706 case T_OBJECT: 707 case T_ARRAY: { 708 oop obj = cast_to_oop(at(interpreter_frame_oop_temp_offset)); 709 assert(obj == NULL || Universe::heap()->is_in(obj), "sanity check"); 710 *oop_result = obj; 711 break; 712 } 713 714 case T_BOOLEAN : { jint* p = (jint*)l_addr; value_result->z = (jboolean)((*p) & 0x1); break; } 715 case T_BYTE : { jint* p = (jint*)l_addr; value_result->b = (jbyte)((*p) & 0xff); break; } 716 case T_CHAR : { jint* p = (jint*)l_addr; value_result->c = (jchar)((*p) & 0xffff); break; } 717 case T_SHORT : { jint* p = (jint*)l_addr; value_result->s = (jshort)((*p) & 0xffff); break; } 718 case T_INT : value_result->i = *(jint*)l_addr; break; 719 case T_LONG : value_result->j = *(jlong*)l_scratch; break; 720 case T_FLOAT : value_result->f = *(jfloat*)d_scratch; break; 721 case T_DOUBLE : value_result->d = *(jdouble*)d_scratch; break; 722 case T_VOID : /* Nothing to do */ break; 723 default : ShouldNotReachHere(); 724 } 725 } else { 726 intptr_t* tos_addr = interpreter_frame_tos_address(); 727 728 switch(type) { 729 case T_OBJECT: 730 case T_ARRAY: { 731 oop obj = cast_to_oop(*tos_addr); 732 assert(obj == NULL || Universe::heap()->is_in(obj), "sanity check"); 733 *oop_result = obj; 734 break; 735 } 736 case T_BOOLEAN : { jint* p = (jint*)tos_addr; value_result->z = (jboolean)((*p) & 0x1); break; } 737 case T_BYTE : { jint* p = (jint*)tos_addr; value_result->b = (jbyte)((*p) & 0xff); break; } 738 case T_CHAR : { jint* p = (jint*)tos_addr; value_result->c = (jchar)((*p) & 0xffff); break; } 739 case T_SHORT : { jint* p = (jint*)tos_addr; value_result->s = (jshort)((*p) & 0xffff); break; } 740 case T_INT : value_result->i = *(jint*)tos_addr; break; 741 case T_LONG : value_result->j = *(jlong*)tos_addr; break; 742 case T_FLOAT : value_result->f = *(jfloat*)tos_addr; break; 743 case T_DOUBLE : value_result->d = *(jdouble*)tos_addr; break; 744 case T_VOID : /* Nothing to do */ break; 745 default : ShouldNotReachHere(); 746 } 747 }; 748 749 return type; 750 } 751 752 // Lesp pointer is one word lower than the top item on the stack. 753 intptr_t* frame::interpreter_frame_tos_at(jint offset) const { 754 int index = (Interpreter::expr_offset_in_bytes(offset)/wordSize) - 1; 755 return &interpreter_frame_tos_address()[index]; 756 } 757 758 759 #ifndef PRODUCT 760 761 #define DESCRIBE_FP_OFFSET(name) \ 762 values.describe(frame_no, fp() + frame::name##_offset, #name) 763 764 void frame::describe_pd(FrameValues& values, int frame_no) { 765 for (int w = 0; w < frame::register_save_words; w++) { 766 values.describe(frame_no, sp() + w, err_msg("register save area word %d", w), 1); 767 } 768 769 if (is_interpreted_frame()) { 770 DESCRIBE_FP_OFFSET(interpreter_frame_d_scratch_fp); 771 DESCRIBE_FP_OFFSET(interpreter_frame_l_scratch_fp); 772 DESCRIBE_FP_OFFSET(interpreter_frame_mirror); 773 DESCRIBE_FP_OFFSET(interpreter_frame_oop_temp); 774 775 // esp, according to Lesp (e.g. not depending on bci), if seems valid 776 intptr_t* esp = *interpreter_frame_esp_addr(); 777 if ((esp >= sp()) && (esp < fp())) { 778 values.describe(-1, esp, "*Lesp"); 779 } 780 } 781 782 if (!is_compiled_frame()) { 783 if (frame::callee_aggregate_return_pointer_words != 0) { 784 values.describe(frame_no, sp() + frame::callee_aggregate_return_pointer_sp_offset, "callee_aggregate_return_pointer_word"); 785 } 786 for (int w = 0; w < frame::callee_register_argument_save_area_words; w++) { 787 values.describe(frame_no, sp() + frame::callee_register_argument_save_area_sp_offset + w, 788 err_msg("callee_register_argument_save_area_words %d", w)); 789 } 790 } 791 } 792 793 #endif 794 795 intptr_t *frame::initial_deoptimization_info() { 796 // unused... but returns fp() to minimize changes introduced by 7087445 797 return fp(); 798 } --- EOF ---