duke@435: /* duke@435: * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. duke@435: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@435: * duke@435: * This code is free software; you can redistribute it and/or modify it duke@435: * under the terms of the GNU General Public License version 2 only, as duke@435: * published by the Free Software Foundation. duke@435: * duke@435: * This code is distributed in the hope that it will be useful, but WITHOUT duke@435: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@435: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@435: * version 2 for more details (a copy is included in the LICENSE file that duke@435: * accompanied this code). duke@435: * duke@435: * You should have received a copy of the GNU General Public License version duke@435: * 2 along with this work; if not, write to the Free Software Foundation, duke@435: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@435: * duke@435: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, duke@435: * CA 95054 USA or visit www.sun.com if you need additional information or duke@435: * have any questions. duke@435: * duke@435: */ duke@435: duke@435: // Inline functions for SPARC frames: duke@435: duke@435: // Constructors duke@435: duke@435: inline frame::frame() { duke@435: _pc = NULL; duke@435: _sp = NULL; duke@435: _younger_sp = NULL; duke@435: _cb = NULL; duke@435: _deopt_state = unknown; duke@435: _sp_adjustment_by_callee = 0; duke@435: } duke@435: duke@435: // Accessors: duke@435: duke@435: inline bool frame::equal(frame other) const { duke@435: bool ret = sp() == other.sp() duke@435: && fp() == other.fp() duke@435: && pc() == other.pc(); duke@435: assert(!ret || ret && cb() == other.cb() && _deopt_state == other._deopt_state, "inconsistent construction"); duke@435: return ret; duke@435: } duke@435: duke@435: // Return unique id for this frame. The id must have a value where we can distinguish duke@435: // identity and younger/older relationship. NULL represents an invalid (incomparable) duke@435: // frame. duke@435: inline intptr_t* frame::id(void) const { return unextended_sp(); } duke@435: duke@435: // Relationals on frames based duke@435: // Return true if the frame is younger (more recent activation) than the frame represented by id duke@435: inline bool frame::is_younger(intptr_t* id) const { assert(this->id() != NULL && id != NULL, "NULL frame id"); duke@435: return this->id() < id ; } duke@435: duke@435: // Return true if the frame is older (less recent activation) than the frame represented by id duke@435: inline bool frame::is_older(intptr_t* id) const { assert(this->id() != NULL && id != NULL, "NULL frame id"); duke@435: return this->id() > id ; } duke@435: duke@435: inline int frame::frame_size() const { return sender_sp() - sp(); } duke@435: duke@435: inline intptr_t* frame::link() const { return (intptr_t *)(fp()[FP->sp_offset_in_saved_window()] + STACK_BIAS); } duke@435: duke@435: inline void frame::set_link(intptr_t* addr) { assert(link()==addr, "frame nesting is controlled by hardware"); } duke@435: duke@435: inline intptr_t* frame::unextended_sp() const { return sp() + _sp_adjustment_by_callee; } duke@435: duke@435: // return address: duke@435: duke@435: inline address frame::sender_pc() const { return *I7_addr() + pc_return_offset; } duke@435: duke@435: inline address* frame::I7_addr() const { return (address*) &sp()[ I7->sp_offset_in_saved_window()]; } duke@435: inline address* frame::I0_addr() const { return (address*) &sp()[ I0->sp_offset_in_saved_window()]; } duke@435: duke@435: inline address* frame::O7_addr() const { return (address*) &younger_sp()[ I7->sp_offset_in_saved_window()]; } duke@435: inline address* frame::O0_addr() const { return (address*) &younger_sp()[ I0->sp_offset_in_saved_window()]; } duke@435: duke@435: inline intptr_t* frame::sender_sp() const { return fp(); } duke@435: duke@435: // Used only in frame::oopmapreg_to_location duke@435: // This return a value in VMRegImpl::slot_size duke@435: inline int frame::pd_oop_map_offset_adjustment() const { duke@435: return _sp_adjustment_by_callee * VMRegImpl::slots_per_word; duke@435: } duke@435: duke@435: #ifdef CC_INTERP duke@435: inline intptr_t** frame::interpreter_frame_locals_addr() const { duke@435: interpreterState istate = get_interpreterState(); duke@435: return (intptr_t**) &istate->_locals; duke@435: } duke@435: duke@435: inline intptr_t* frame::interpreter_frame_bcx_addr() const { duke@435: interpreterState istate = get_interpreterState(); duke@435: return (intptr_t*) &istate->_bcp; duke@435: } duke@435: duke@435: inline intptr_t* frame::interpreter_frame_mdx_addr() const { duke@435: interpreterState istate = get_interpreterState(); duke@435: return (intptr_t*) &istate->_mdx; duke@435: } duke@435: duke@435: inline jint frame::interpreter_frame_expression_stack_direction() { return -1; } duke@435: duke@435: // bottom(base) of the expression stack (highest address) duke@435: inline intptr_t* frame::interpreter_frame_expression_stack() const { duke@435: return (intptr_t*)interpreter_frame_monitor_end() - 1; duke@435: } duke@435: duke@435: // top of expression stack (lowest address) duke@435: inline intptr_t* frame::interpreter_frame_tos_address() const { duke@435: interpreterState istate = get_interpreterState(); duke@435: return istate->_stack + 1; // Is this off by one? QQQ duke@435: } duke@435: duke@435: // monitor elements duke@435: duke@435: // in keeping with Intel side: end is lower in memory than begin; duke@435: // and beginning element is oldest element duke@435: // Also begin is one past last monitor. duke@435: duke@435: inline BasicObjectLock* frame::interpreter_frame_monitor_begin() const { duke@435: return get_interpreterState()->monitor_base(); duke@435: } duke@435: duke@435: inline BasicObjectLock* frame::interpreter_frame_monitor_end() const { duke@435: return (BasicObjectLock*) get_interpreterState()->stack_base(); duke@435: } duke@435: duke@435: duke@435: inline int frame::interpreter_frame_monitor_size() { duke@435: return round_to(BasicObjectLock::size(), WordsPerLong); duke@435: } duke@435: duke@435: inline methodOop* frame::interpreter_frame_method_addr() const { duke@435: interpreterState istate = get_interpreterState(); duke@435: return &istate->_method; duke@435: } duke@435: duke@435: duke@435: // Constant pool cache duke@435: duke@435: // where LcpoolCache is saved: duke@435: inline constantPoolCacheOop* frame::interpreter_frame_cpoolcache_addr() const { duke@435: interpreterState istate = get_interpreterState(); duke@435: return &istate->_constants; // should really use accessor duke@435: } duke@435: duke@435: inline constantPoolCacheOop* frame::interpreter_frame_cache_addr() const { duke@435: interpreterState istate = get_interpreterState(); duke@435: return &istate->_constants; duke@435: } duke@435: duke@435: #else // !CC_INTERP duke@435: duke@435: inline intptr_t** frame::interpreter_frame_locals_addr() const { duke@435: return (intptr_t**) sp_addr_at( Llocals->sp_offset_in_saved_window()); duke@435: } duke@435: duke@435: inline intptr_t* frame::interpreter_frame_bcx_addr() const { duke@435: // %%%%% reinterpreting Lbcp as a bcx duke@435: return (intptr_t*) sp_addr_at( Lbcp->sp_offset_in_saved_window()); duke@435: } duke@435: duke@435: inline intptr_t* frame::interpreter_frame_mdx_addr() const { duke@435: // %%%%% reinterpreting ImethodDataPtr as a mdx duke@435: return (intptr_t*) sp_addr_at( ImethodDataPtr->sp_offset_in_saved_window()); duke@435: } duke@435: duke@435: inline jint frame::interpreter_frame_expression_stack_direction() { return -1; } duke@435: duke@435: // bottom(base) of the expression stack (highest address) duke@435: inline intptr_t* frame::interpreter_frame_expression_stack() const { duke@435: return (intptr_t*)interpreter_frame_monitors() - 1; duke@435: } duke@435: duke@435: // top of expression stack (lowest address) duke@435: inline intptr_t* frame::interpreter_frame_tos_address() const { duke@435: return *interpreter_frame_esp_addr() + 1; duke@435: } duke@435: duke@435: inline void frame::interpreter_frame_set_tos_address( intptr_t* x ) { duke@435: *interpreter_frame_esp_addr() = x - 1; duke@435: } duke@435: duke@435: // monitor elements duke@435: duke@435: // in keeping with Intel side: end is lower in memory than begin; duke@435: // and beginning element is oldest element duke@435: // Also begin is one past last monitor. duke@435: duke@435: inline BasicObjectLock* frame::interpreter_frame_monitor_begin() const { duke@435: int rounded_vm_local_words = round_to(frame::interpreter_frame_vm_local_words, WordsPerLong); duke@435: return (BasicObjectLock *)fp_addr_at(-rounded_vm_local_words); duke@435: } duke@435: duke@435: inline BasicObjectLock* frame::interpreter_frame_monitor_end() const { duke@435: return interpreter_frame_monitors(); duke@435: } duke@435: duke@435: duke@435: inline void frame::interpreter_frame_set_monitor_end(BasicObjectLock* value) { duke@435: interpreter_frame_set_monitors(value); duke@435: } duke@435: duke@435: inline int frame::interpreter_frame_monitor_size() { duke@435: return round_to(BasicObjectLock::size(), WordsPerLong); duke@435: } duke@435: duke@435: inline methodOop* frame::interpreter_frame_method_addr() const { duke@435: return (methodOop*)sp_addr_at( Lmethod->sp_offset_in_saved_window()); duke@435: } duke@435: duke@435: duke@435: // Constant pool cache duke@435: duke@435: // where LcpoolCache is saved: duke@435: inline constantPoolCacheOop* frame::interpreter_frame_cpoolcache_addr() const { duke@435: return (constantPoolCacheOop*)sp_addr_at(LcpoolCache->sp_offset_in_saved_window()); duke@435: } duke@435: duke@435: inline constantPoolCacheOop* frame::interpreter_frame_cache_addr() const { duke@435: return (constantPoolCacheOop*)sp_addr_at( LcpoolCache->sp_offset_in_saved_window()); duke@435: } duke@435: #endif // CC_INTERP duke@435: duke@435: duke@435: inline JavaCallWrapper* frame::entry_frame_call_wrapper() const { duke@435: // note: adjust this code if the link argument in StubGenerator::call_stub() changes! duke@435: const Argument link = Argument(0, false); duke@435: return (JavaCallWrapper*)sp()[link.as_in().as_register()->sp_offset_in_saved_window()]; duke@435: } duke@435: duke@435: duke@435: inline int frame::local_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors) { duke@435: // always allocate non-argument locals 0..5 as if they were arguments: duke@435: int allocated_above_frame = nof_args; duke@435: if (allocated_above_frame < callee_register_argument_save_area_words) duke@435: allocated_above_frame = callee_register_argument_save_area_words; duke@435: if (allocated_above_frame > max_nof_locals) duke@435: allocated_above_frame = max_nof_locals; duke@435: duke@435: // Note: monitors (BasicLock blocks) are never allocated in argument slots duke@435: //assert(local_index >= 0 && local_index < max_nof_locals, "bad local index"); duke@435: if (local_index < allocated_above_frame) duke@435: return local_index + callee_register_argument_save_area_sp_offset; duke@435: else duke@435: return local_index - (max_nof_locals + max_nof_monitors*2) + compiler_frame_vm_locals_fp_offset; duke@435: } duke@435: duke@435: inline int frame::monitor_offset_for_compiler(int local_index, int nof_args, int max_nof_locals, int max_nof_monitors) { duke@435: assert(local_index >= max_nof_locals && ((local_index - max_nof_locals) & 1) && (local_index - max_nof_locals) < max_nof_monitors*2, "bad monitor index"); duke@435: duke@435: // The compiler uses the __higher__ of two indexes allocated to the monitor. duke@435: // Increasing local indexes are mapped to increasing memory locations, duke@435: // so the start of the BasicLock is associated with the __lower__ index. duke@435: duke@435: int offset = (local_index-1) - (max_nof_locals + max_nof_monitors*2) + compiler_frame_vm_locals_fp_offset; duke@435: duke@435: // We allocate monitors aligned zero mod 8: duke@435: assert((offset & 1) == 0, "monitor must be an an even address."); duke@435: // This works because all monitors are allocated after duke@435: // all locals, and because the highest address corresponding to any duke@435: // monitor index is always even. duke@435: assert((compiler_frame_vm_locals_fp_offset & 1) == 0, "end of monitors must be even address"); duke@435: duke@435: return offset; duke@435: } duke@435: duke@435: inline int frame::min_local_offset_for_compiler(int nof_args, int max_nof_locals, int max_nof_monitors) { duke@435: // always allocate non-argument locals 0..5 as if they were arguments: duke@435: int allocated_above_frame = nof_args; duke@435: if (allocated_above_frame < callee_register_argument_save_area_words) duke@435: allocated_above_frame = callee_register_argument_save_area_words; duke@435: if (allocated_above_frame > max_nof_locals) duke@435: allocated_above_frame = max_nof_locals; duke@435: duke@435: int allocated_in_frame = (max_nof_locals + max_nof_monitors*2) - allocated_above_frame; duke@435: duke@435: return compiler_frame_vm_locals_fp_offset - allocated_in_frame; duke@435: } duke@435: duke@435: // On SPARC, the %lN and %iN registers are non-volatile. duke@435: inline bool frame::volatile_across_calls(Register reg) { duke@435: // This predicate is (presently) applied only to temporary registers, duke@435: // and so it need not recognize non-volatile globals. duke@435: return reg->is_out() || reg->is_global(); duke@435: } duke@435: duke@435: inline oop frame::saved_oop_result(RegisterMap* map) const { duke@435: return *((oop*) map->location(O0->as_VMReg())); duke@435: } duke@435: duke@435: inline void frame::set_saved_oop_result(RegisterMap* map, oop obj) { duke@435: *((oop*) map->location(O0->as_VMReg())) = obj; duke@435: }