Searched refs:frame_slots (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.hpp427 static void save_native_result(MacroAssembler *_masm, BasicType ret_type, int frame_slots );
428 static void restore_native_result(MacroAssembler *_masm, BasicType ret_type, int frame_slots );
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp1235 void SharedRuntime::save_native_result(MacroAssembler *masm, BasicType ret_type, int frame_slots) { argument
1238 __ stf(FloatRegisterImpl::S, F0, SP, frame_slots*VMRegImpl::stack_slot_size - 4+STACK_BIAS);
1241 __ stf(FloatRegisterImpl::D, F0, SP, frame_slots*VMRegImpl::stack_slot_size - 8+STACK_BIAS);
1246 void SharedRuntime::restore_native_result(MacroAssembler *masm, BasicType ret_type, int frame_slots) { argument
1249 __ ldf(FloatRegisterImpl::S, SP, frame_slots*VMRegImpl::stack_slot_size - 4+STACK_BIAS, F0);
1252 __ ldf(FloatRegisterImpl::D, SP, frame_slots*VMRegImpl::stack_slot_size - 8+STACK_BIAS, F0);
/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.hpp867 int frame_slots() const { return _frame_slots; } function in class:Compile
868 int frame_size_in_words() const; // frame_slots in units of the polymorphic 'words'
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_32.cpp1166 void SharedRuntime::save_native_result(MacroAssembler *masm, BasicType ret_type, int frame_slots) { argument
1167 // We always ignore the frame_slots arg and just use the space just below frame pointer
1187 void SharedRuntime::restore_native_result(MacroAssembler *masm, BasicType ret_type, int frame_slots) { argument
1188 // We always ignore the frame_slots arg and just use the space just below frame pointer
H A DsharedRuntime_x86_64.cpp1213 void SharedRuntime::save_native_result(MacroAssembler *masm, BasicType ret_type, int frame_slots) { argument
1214 // We always ignore the frame_slots arg and just use the space just below frame pointer
1230 void SharedRuntime::restore_native_result(MacroAssembler *masm, BasicType ret_type, int frame_slots) { argument
1231 // We always ignore the frame_slots arg and just use the space just below frame pointer

Completed in 73 milliseconds