Searched defs:num_slots (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A DcppInterpreter_zero.cpp615 // Slots >= insert_before will become old_slot + num_slots.
616 void CppInterpreter::insert_vmslots(int insert_before, int num_slots, TRAPS) { argument
621 stack->overflow_check(num_slots, CHECK);
622 stack->alloc(num_slots * wordSize);
627 SET_VMSLOTS_SLOT(VMSLOTS_SLOT(i + num_slots), i);
630 void CppInterpreter::remove_vmslots(int first_slot, int num_slots, TRAPS) { argument
637 SET_VMSLOTS_SLOT(VMSLOTS_SLOT(i), i + num_slots); local
640 stack->set_sp(stack->sp() + num_slots);

Completed in 32 milliseconds