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

/art/runtime/
H A Dmethod_handles.cc312 size_t src_reg = is_range ? (first_arg + i) : args[i]; local
314 uint32_t src_value = caller_frame.GetVReg(src_reg);
315 ObjPtr<mirror::Object> o = caller_frame.GetVRegReference<kVerifyNone>(src_reg);
/art/compiler/dex/
H A Dinline_method_analyser.cc662 uint32_t src_reg = instruction->VRegA_22c(); local
667 DCHECK_GE(src_reg, arg_start);
668 DCHECK_LT(opcode == Instruction::IPUT_WIDE ? src_reg + 1 : src_reg, code_item->registers_size_);
670 uint32_t src_arg = src_reg - arg_start;
/art/runtime/interpreter/
H A Dinterpreter_common.cc889 for (size_t src_reg = first_src_reg, dest_reg = first_dest_reg; dest_reg < dest_reg_bound;
890 ++dest_reg, ++src_reg) {
891 AssignRegister(callee_frame, caller_frame, dest_reg, src_reg);
1016 const size_t src_reg = (is_range) ? vregC + arg_offset : arg[arg_offset]; local
1020 ObjPtr<mirror::Object> o = shadow_frame.GetVRegReference(src_reg);
1052 (static_cast<uint64_t>(shadow_frame.GetVReg(src_reg + 1)) << BitSizeOf<uint32_t>()) |
1053 static_cast<uint32_t>(shadow_frame.GetVReg(src_reg));
1062 new_shadow_frame->SetVReg(dest_reg, shadow_frame.GetVReg(src_reg));
1170 size_t src_reg = is_range ? vregC + i : arg[i]; local
1173 i, shadow_frame.GetVReg(src_reg));
[all...]
/art/compiler/optimizing/
H A Dcode_generator_x86.cc1267 XmmRegister src_reg = source.AsFpuRegister<XmmRegister>(); local
1268 __ movd(destination.AsRegisterPairLow<Register>(), src_reg);
1269 __ psrlq(src_reg, Immediate(32));
1270 __ movd(destination.AsRegisterPairHigh<Register>(), src_reg);
5823 XmmRegister src_reg = source.AsFpuRegister<XmmRegister>(); local
5824 __ movd(destination.AsRegisterPairLow<Register>(), src_reg);
5825 __ psrlq(src_reg, Immediate(32));
5826 __ movd(destination.AsRegisterPairHigh<Register>(), src_reg);

Completed in 497 milliseconds