Home
last modified time | relevance | path

Searched refs:arg_reg (Results 1 – 2 of 2) sorted by relevance

/art/libdexfile/dex/
Ddex_file-inl.h198 uint16_t arg_reg = registers_size - ins_size; in DecodeDebugLocalInfo() local
201 local_in_reg[arg_reg].name_ = "this"; in DecodeDebugLocalInfo()
202 local_in_reg[arg_reg].descriptor_ = descriptor; in DecodeDebugLocalInfo()
203 local_in_reg[arg_reg].signature_ = nullptr; in DecodeDebugLocalInfo()
204 local_in_reg[arg_reg].start_address_ = 0; in DecodeDebugLocalInfo()
205 local_in_reg[arg_reg].reg_ = arg_reg; in DecodeDebugLocalInfo()
206 local_in_reg[arg_reg].is_live_ = true; in DecodeDebugLocalInfo()
207 arg_reg++; in DecodeDebugLocalInfo()
219 if (arg_reg >= registers_size) { in DecodeDebugLocalInfo()
220 LOG(ERROR) << "invalid stream - arg reg >= reg size (" << arg_reg in DecodeDebugLocalInfo()
[all …]
/art/compiler/debug/
Delf_debug_info_writer.h204 uint32_t arg_reg = 0; in Write() local
212 const uint32_t vreg = accessor.RegistersSize() - accessor.InsSize() + arg_reg; in Write()
216 arg_reg++; in Write()
232 const uint32_t vreg = accessor.RegistersSize() - accessor.InsSize() + arg_reg; in Write()
235 arg_reg += is64bitValue ? 2 : 1; in Write()
239 DCHECK_EQ(arg_reg, accessor.InsSize()); in Write()