1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:18:11 +00:00

LibDebug: add DW_LNS_set_basic_block support

This adds support for the basic_block register to the Dwarf line
number state machine.
This commit is contained in:
spigwitmer 2021-05-02 14:02:14 -04:00 committed by Andreas Kling
parent bd68ca362b
commit 3a5f9b2f7e
2 changed files with 7 additions and 0 deletions

View file

@ -242,6 +242,10 @@ void LineProgram::handle_standard_opcode(u8 opcode)
m_address += delta;
break;
}
case StandardOpcodes::SetBasicBlock: {
m_basic_block = true;
break;
}
default:
dbgln("Unhandled LineProgram opcode {}", opcode);
VERIFY_NOT_REACHED();
@ -262,6 +266,8 @@ void LineProgram::handle_special_opcode(u8 opcode)
}
append_to_line_info();
m_basic_block = false;
}
void LineProgram::run_program()