Skip to content

[lldb][NFC] Add a missing setter method for UnwindPlans #109751

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions lldb/include/lldb/Symbol/UnwindPlan.h
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,13 @@ class UnwindPlan {

bool SetRegisterLocationToSame(uint32_t reg_num, bool must_replace);

/// This method does not make a copy of the \a opcodes memory, it is
/// assumed to have the same lifetime as the Module this UnwindPlan will
/// be registered in.
bool SetRegisterLocationToIsDWARFExpression(uint32_t reg_num,
const uint8_t *opcodes,
uint32_t len, bool can_replace);

bool SetRegisterLocationToIsConstant(uint32_t reg_num, uint64_t constant,
bool can_replace);

Expand Down
Loading