comparison src/share/vm/runtime/deoptimization.cpp @ 14309:63a4eb8bcd23

8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
author jwilhelm
date Thu, 23 Jan 2014 14:47:23 +0100
parents b9b6934ad75c
children 8a9bb7821e28
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
378 // than simply use array->sender.pc(). This requires us to walk the current set of frames 378 // than simply use array->sender.pc(). This requires us to walk the current set of frames
379 // 379 //
380 frame deopt_sender = stub_frame.sender(&dummy_map); // First is the deoptee frame 380 frame deopt_sender = stub_frame.sender(&dummy_map); // First is the deoptee frame
381 deopt_sender = deopt_sender.sender(&dummy_map); // Now deoptee caller 381 deopt_sender = deopt_sender.sender(&dummy_map); // Now deoptee caller
382 382
383 // It's possible that the number of paramters at the call site is 383 // It's possible that the number of parameters at the call site is
384 // different than number of arguments in the callee when method 384 // different than number of arguments in the callee when method
385 // handles are used. If the caller is interpreted get the real 385 // handles are used. If the caller is interpreted get the real
386 // value so that the proper amount of space can be added to it's 386 // value so that the proper amount of space can be added to it's
387 // frame. 387 // frame.
388 bool caller_was_method_handle = false; 388 bool caller_was_method_handle = false;
538 #ifndef CC_INTERP 538 #ifndef CC_INTERP
539 // Regardless of whether we entered this routine with the pending 539 // Regardless of whether we entered this routine with the pending
540 // popframe condition bit set, we should always clear it now 540 // popframe condition bit set, we should always clear it now
541 thread->clear_popframe_condition(); 541 thread->clear_popframe_condition();
542 #else 542 #else
543 // C++ interpeter will clear has_pending_popframe when it enters 543 // C++ interpreter will clear has_pending_popframe when it enters
544 // with method_resume. For deopt_resume2 we clear it now. 544 // with method_resume. For deopt_resume2 we clear it now.
545 if (thread->popframe_forcing_deopt_reexecution()) 545 if (thread->popframe_forcing_deopt_reexecution())
546 thread->clear_popframe_condition(); 546 thread->clear_popframe_condition();
547 #endif /* CC_INTERP */ 547 #endif /* CC_INTERP */
548 } 548 }