🍒 [lldb][Target] RunThreadPlan to save/restore the ExecutionContext's frame if one exists #10413
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When using
SBFrame::EvaluateExpression
on a frame that's not thecurrently selected frame, we would sometimes run into errors such as:
During expression parsing, we call
RunStaticInitializers
. On ourinternal fork this happens quite frequently because any usage of, e.g.,
function pointers, will inject ptrauth fixup code into the expression.
The static initializers are run using
RunThreadPlan
. TheExecutionContext::m_frame_sp
going into theRunThreadPlan
is theSBFrame
that we calledEvaluateExpression
on. LLDB then tries tosave this frame to restore it after the thread-plan ran (the restore
occurs by unconditionally overwriting whatever is in
ExecutionContext::m_frame_sp
). However, if theselected_frame_sp
isnot the same as the
SBFrame
, thenRunThreadPlan
would set theExecutionContext
's frame to a different frame than what we startedwith. When we
PrepareToExecuteJITExpression
, LLDB checks whether theExecutionContext
frame changed from when we initiallyEvaluateExpression
, and if did, bails out with the error above.One such test-case is attached. This currently passes regardless of the
fix because our ptrauth static initializers code isn't upstream yet. But
the plan is to upstream it soon.
This patch addresses the issue by saving/restoring the frame of the
incoming
ExecutionContext
, if such frame exists. Otherwise, fall backto using the selected frame.
rdar://147456589
(cherry picked from commit 554f4d1)