• Home
  • Raw
  • Download

Lines Matching refs:reg

253         for (uint16_t reg = 0; reg < registers_size; reg++) {  in DecodeDebugLocalInfo()  local
254 if (local_in_reg[reg].is_live_) { in DecodeDebugLocalInfo()
255 local_in_reg[reg].end_address_ = insns_size_in_code_units; in DecodeDebugLocalInfo()
256 new_local_callback(local_in_reg[reg]); in DecodeDebugLocalInfo()
268 uint16_t reg = DecodeUnsignedLeb128(&stream); in DecodeDebugLocalInfo() local
269 if (reg >= registers_size) { in DecodeDebugLocalInfo()
270 LOG(ERROR) << "invalid stream - reg >= reg size (" << reg << " >= " in DecodeDebugLocalInfo()
283 if (local_in_reg[reg].is_live_) { in DecodeDebugLocalInfo()
284 local_in_reg[reg].end_address_ = address; in DecodeDebugLocalInfo()
285 new_local_callback(local_in_reg[reg]); in DecodeDebugLocalInfo()
288 local_in_reg[reg].name_ = index_to_string_data(name_idx); in DecodeDebugLocalInfo()
289 local_in_reg[reg].descriptor_ = type_index_to_string_data(descriptor_idx);; in DecodeDebugLocalInfo()
290 local_in_reg[reg].signature_ = index_to_string_data(signature_idx); in DecodeDebugLocalInfo()
291 local_in_reg[reg].start_address_ = address; in DecodeDebugLocalInfo()
292 local_in_reg[reg].reg_ = reg; in DecodeDebugLocalInfo()
293 local_in_reg[reg].is_live_ = true; in DecodeDebugLocalInfo()
297 uint16_t reg = DecodeUnsignedLeb128(&stream); in DecodeDebugLocalInfo() local
298 if (reg >= registers_size) { in DecodeDebugLocalInfo()
299 LOG(ERROR) << "invalid stream - reg >= reg size (" << reg << " >= " in DecodeDebugLocalInfo()
305 if (local_in_reg[reg].is_live_) { in DecodeDebugLocalInfo()
306 local_in_reg[reg].end_address_ = address; in DecodeDebugLocalInfo()
307 new_local_callback(local_in_reg[reg]); in DecodeDebugLocalInfo()
308 local_in_reg[reg].is_live_ = false; in DecodeDebugLocalInfo()
313 uint16_t reg = DecodeUnsignedLeb128(&stream); in DecodeDebugLocalInfo() local
314 if (reg >= registers_size) { in DecodeDebugLocalInfo()
315 LOG(ERROR) << "invalid stream - reg >= reg size (" << reg << " >= " in DecodeDebugLocalInfo()
321 if (!local_in_reg[reg].is_live_) { in DecodeDebugLocalInfo()
322 local_in_reg[reg].start_address_ = address; in DecodeDebugLocalInfo()
323 local_in_reg[reg].is_live_ = true; in DecodeDebugLocalInfo()