================
@@ -268,6 +266,19 @@ enum StopReason {
eStopReasonHistoryBoundary,
};
+/// Scripted Frame Provider Merge Strategies.
+enum ScriptedFrameProviderMergeStrategy {
+ /// Replace the entire stack with scripted frames
+ eScriptedFrameProviderMergeStrategyReplace = 0,
+ /// Prepend scripted frames before real unwound frames
+ eScriptedFrameProviderMergeStrategyPrepend,
+ /// Append scripted frames after real unwound frames
+ eScriptedFrameProviderMergeStrategyAppend,
+ /// Replace specific frame indices with scripted frames, keeping other real
+ /// frames
+ eScriptedFrameProviderMergeStrategyReplaceByIndex,
+};
----------------
JDevlieghere wrote:
Presumably this is not necessary if you take the existing list, and then have
the provider modify that?
https://github.com/llvm/llvm-project/pull/161870
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits