Lines Matching refs:cfa_offset

221       uint32_t cfa_offset = __builtin_popcount(registers) * 4;  in DecodePrefix_10_00()  local
222 log_cfa_offset_ += cfa_offset; in DecodePrefix_10_00()
225 log_regs_[reg] = cfa_offset; in DecodePrefix_10_00()
226 cfa_offset -= 4; in DecodePrefix_10_00()
309 uint32_t cfa_offset = (end_reg - 3) * 4; in DecodePrefix_10_10() local
311 cfa_offset += 4; in DecodePrefix_10_10()
313 log_cfa_offset_ += cfa_offset; in DecodePrefix_10_10()
316 log_regs_[reg] = cfa_offset; in DecodePrefix_10_10()
317 cfa_offset -= 4; in DecodePrefix_10_10()
321 log_regs_[14] = cfa_offset; in DecodePrefix_10_10()
405 uint32_t cfa_offset = __builtin_popcount(byte) * 4; in DecodePrefix_10_11_0001() local
406 log_cfa_offset_ += cfa_offset; in DecodePrefix_10_11_0001()
409 log_regs_[reg] = cfa_offset; in DecodePrefix_10_11_0001()
410 cfa_offset -= 4; in DecodePrefix_10_11_0001()
457 int32_t cfa_offset = 0x204 + result; in DecodePrefix_10_11_0010() local
459 log(log_indent_, "vsp = vsp + %d", cfa_offset); in DecodePrefix_10_11_0010()
461 log_cfa_offset_ += cfa_offset; in DecodePrefix_10_11_0010()
463 AdjustRegisters(cfa_offset); in DecodePrefix_10_11_0010()
785 int32_t cfa_offset = ((byte & 0x3f) << 2) + 4; in Decode() local
787 log(log_indent_, "vsp = vsp + %d", cfa_offset); in Decode()
789 log_cfa_offset_ += cfa_offset; in Decode()
791 AdjustRegisters(cfa_offset); in Decode()
802 uint32_t cfa_offset = ((byte & 0x3f) << 2) + 4; in Decode() local
804 log(log_indent_, "vsp = vsp - %d", cfa_offset); in Decode()
806 log_cfa_offset_ -= cfa_offset; in Decode()
808 AdjustRegisters(-cfa_offset); in Decode()