clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
141 lines
5.0 KiB
C++
141 lines
5.0 KiB
C++
//===-- ThreadPlanShouldStopHere.h ------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLDB_TARGET_THREADPLANSHOULDSTOPHERE_H
|
|
#define LLDB_TARGET_THREADPLANSHOULDSTOPHERE_H
|
|
|
|
#include "lldb/Target/ThreadPlan.h"
|
|
|
|
namespace lldb_private {
|
|
|
|
// This is an interface that ThreadPlans can adopt to allow flexible
|
|
// modifications of the behavior when a thread plan comes to a place where it
|
|
// would ordinarily stop. If such modification makes sense for your plan,
|
|
// inherit from this class, and when you would be about to stop (in your
|
|
// ShouldStop method), call InvokeShouldStopHereCallback, passing in the frame
|
|
// comparison between where the step operation started and where you arrived.
|
|
// If it returns true, then QueueStepOutFromHere will queue the plan to execute
|
|
// instead of stopping.
|
|
//
|
|
// The classic example of the use of this is ThreadPlanStepInRange not stopping
|
|
// in frames that have no debug information.
|
|
//
|
|
// This class also defines a set of flags to control general aspects of this
|
|
// "ShouldStop" behavior.
|
|
// A class implementing this protocol needs to define a default set of flags,
|
|
// and can provide access to
|
|
// changing that default flag set if it wishes.
|
|
|
|
class ThreadPlanShouldStopHere {
|
|
public:
|
|
struct ThreadPlanShouldStopHereCallbacks {
|
|
ThreadPlanShouldStopHereCallbacks() {
|
|
should_stop_here_callback = nullptr;
|
|
step_from_here_callback = nullptr;
|
|
}
|
|
|
|
ThreadPlanShouldStopHereCallbacks(
|
|
ThreadPlanShouldStopHereCallback should_stop,
|
|
ThreadPlanStepFromHereCallback step_from_here) {
|
|
should_stop_here_callback = should_stop;
|
|
step_from_here_callback = step_from_here;
|
|
}
|
|
|
|
void Clear() {
|
|
should_stop_here_callback = nullptr;
|
|
step_from_here_callback = nullptr;
|
|
}
|
|
|
|
ThreadPlanShouldStopHereCallback should_stop_here_callback;
|
|
ThreadPlanStepFromHereCallback step_from_here_callback;
|
|
};
|
|
|
|
enum {
|
|
eNone = 0,
|
|
eAvoidInlines = (1 << 0),
|
|
eStepInAvoidNoDebug = (1 << 1),
|
|
eStepOutAvoidNoDebug = (1 << 2)
|
|
};
|
|
|
|
// Constructors and Destructors
|
|
ThreadPlanShouldStopHere(ThreadPlan *owner);
|
|
|
|
ThreadPlanShouldStopHere(ThreadPlan *owner,
|
|
const ThreadPlanShouldStopHereCallbacks *callbacks,
|
|
void *baton = nullptr);
|
|
virtual ~ThreadPlanShouldStopHere();
|
|
|
|
// Set the ShouldStopHere callbacks. Pass in null to clear them and have no
|
|
// special behavior (though you can also call ClearShouldStopHereCallbacks
|
|
// for that purpose. If you pass in a valid pointer, it will adopt the non-
|
|
// null fields, and any null fields will be set to the default values.
|
|
|
|
void
|
|
SetShouldStopHereCallbacks(const ThreadPlanShouldStopHereCallbacks *callbacks,
|
|
void *baton) {
|
|
if (callbacks) {
|
|
m_callbacks = *callbacks;
|
|
if (!m_callbacks.should_stop_here_callback)
|
|
m_callbacks.should_stop_here_callback =
|
|
ThreadPlanShouldStopHere::DefaultShouldStopHereCallback;
|
|
if (!m_callbacks.step_from_here_callback)
|
|
m_callbacks.step_from_here_callback =
|
|
ThreadPlanShouldStopHere::DefaultStepFromHereCallback;
|
|
} else {
|
|
ClearShouldStopHereCallbacks();
|
|
}
|
|
m_baton = baton;
|
|
}
|
|
|
|
void ClearShouldStopHereCallbacks() { m_callbacks.Clear(); }
|
|
|
|
bool InvokeShouldStopHereCallback(lldb::FrameComparison operation,
|
|
Status &status);
|
|
|
|
lldb::ThreadPlanSP
|
|
CheckShouldStopHereAndQueueStepOut(lldb::FrameComparison operation,
|
|
Status &status);
|
|
|
|
lldb_private::Flags &GetFlags() { return m_flags; }
|
|
|
|
const lldb_private::Flags &GetFlags() const { return m_flags; }
|
|
|
|
protected:
|
|
static bool DefaultShouldStopHereCallback(ThreadPlan *current_plan,
|
|
Flags &flags,
|
|
lldb::FrameComparison operation,
|
|
Status &status, void *baton);
|
|
|
|
static lldb::ThreadPlanSP
|
|
DefaultStepFromHereCallback(ThreadPlan *current_plan, Flags &flags,
|
|
lldb::FrameComparison operation, Status &status,
|
|
void *baton);
|
|
|
|
virtual lldb::ThreadPlanSP
|
|
QueueStepOutFromHerePlan(Flags &flags, lldb::FrameComparison operation,
|
|
Status &status);
|
|
|
|
// Implement this, and call it in the plan's constructor to set the default
|
|
// flags.
|
|
virtual void SetFlagsToDefault() = 0;
|
|
|
|
ThreadPlanShouldStopHereCallbacks m_callbacks;
|
|
void *m_baton;
|
|
ThreadPlan *m_owner;
|
|
lldb_private::Flags m_flags;
|
|
|
|
private:
|
|
ThreadPlanShouldStopHere(const ThreadPlanShouldStopHere &) = delete;
|
|
const ThreadPlanShouldStopHere &
|
|
operator=(const ThreadPlanShouldStopHere &) = delete;
|
|
};
|
|
|
|
} // namespace lldb_private
|
|
|
|
#endif // LLDB_TARGET_THREADPLANSHOULDSTOPHERE_H
|