Lines Matching refs:st_off

486   // base+st_off points to top of argument
487 int arg_offset(const int st_off) { return st_off; }
488 int next_arg_offset(const int st_off) {
489 return st_off - Interpreter::stackElementSize;
494 RegisterOrConstant arg_slot(const int st_off);
495 RegisterOrConstant next_arg_slot(const int st_off);
499 const int st_off, bool is_stack);
501 const int st_off);
503 const int st_off);
505 VMReg r_1, Register base, const int st_off);
507 const int st_off);
581 RegisterOrConstant AdapterGenerator::arg_slot(const int st_off) {
582 RegisterOrConstant roc(arg_offset(st_off));
586 RegisterOrConstant AdapterGenerator::next_arg_slot(const int st_off) {
587 RegisterOrConstant roc(next_arg_offset(st_off));
594 const int st_off, bool is_stack) {
598 __ stx(r, base, next_arg_slot(st_off));
602 __ stw(r, base, arg_slot(st_off)); // lo bits
604 __ stw(r, base, next_arg_slot(st_off)); // hi bits
608 __ stw(r, base, arg_slot(st_off)); // lo bits
610 __ stw(r, base, next_arg_slot(st_off)); // hi bits
612 __ stw(r->successor(), base, arg_slot(st_off) ); // lo bits
613 __ stw(r , base, next_arg_slot(st_off)); // hi bits
620 const int st_off) {
621 __ st_ptr (r, base, arg_slot(st_off));
625 const int st_off) {
626 __ st (r, base, arg_slot(st_off));
631 VMReg r_1, Register base, const int st_off) {
635 __ stf(FloatRegisterImpl::D, r_1->as_FloatRegister(), base, next_arg_slot(st_off));
638 __ stf(FloatRegisterImpl::S, r_1->as_FloatRegister(), base, next_arg_slot(st_off));
639 __ stf(FloatRegisterImpl::S, r_2->as_FloatRegister(), base, arg_slot(st_off) );
644 const int st_off) {
645 __ stf(FloatRegisterImpl::S, f, base, arg_slot(st_off));
697 const int st_off = interp_arg_offset - (i*Interpreter::stackElementSize) + bias;
715 store_c2i_object(r, base, st_off);
717 store_c2i_long(r, base, st_off, r_2->is_stack());
719 store_c2i_int(r, base, st_off);
724 store_c2i_float(r_1->as_FloatRegister(), base, st_off);
727 store_c2i_double(r_2, r_1, base, st_off);
984 int st_off = reg2offset(regs[i].first()) + STACK_BIAS;
986 RegisterOrConstant slot = __ ensure_simm13_or_reg(st_off, Rdisp);