Home | History | Annotate | Download | only in interpreter

Lines Matching refs:arg_pos

478     size_t arg_pos = is_range ? vregC + arg_offset : arg[arg_offset];
481 Object* o = shadow_frame.GetVRegReference(arg_pos);
503 uint64_t wide_value = (static_cast<uint64_t>(shadow_frame.GetVReg(arg_pos + 1)) << 32) |
504 static_cast<uint32_t>(shadow_frame.GetVReg(arg_pos));
511 new_shadow_frame->SetVReg(cur_reg, shadow_frame.GetVReg(arg_pos));
588 size_t arg_pos = is_range ? vregC + arg_offset : arg[arg_offset];
591 Object* o = shadow_frame.GetVRegReference(arg_pos);
596 uint64_t wide_value = (static_cast<uint64_t>(shadow_frame.GetVReg(arg_pos + 1)) << 32) |
597 static_cast<uint32_t>(shadow_frame.GetVReg(arg_pos));
604 new_shadow_frame->SetVReg(cur_reg, shadow_frame.GetVReg(arg_pos));
3173 for (size_t shorty_pos = 0, arg_pos = 0; cur_reg < num_regs; ++shorty_pos, ++arg_pos, cur_reg++) {
3177 Object* o = reinterpret_cast<Object*>(args[arg_pos]);
3182 uint64_t wide_value = (static_cast<uint64_t>(args[arg_pos + 1]) << 32) | args[arg_pos];
3185 arg_pos++;
3189 shadow_frame->SetVReg(cur_reg, args[arg_pos]);