blob: c2f4ab6bbb84a57dc13fd017db435840b94e01f3 [file] [log] [blame]
//===-- ThreadPlanCallUserExpression.h --------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_ThreadPlanCallUserExpression_h_
#define liblldb_ThreadPlanCallUserExpression_h_
// C Includes
// C++ Includes
// Other libraries and framework includes
// Project includes
#include "lldb/lldb-private.h"
#include "lldb/Expression/ClangUserExpression.h"
#include "lldb/Target/Thread.h"
#include "lldb/Target/ThreadPlan.h"
#include "lldb/Target/ThreadPlanCallFunction.h"
namespace lldb_private {
class ThreadPlanCallUserExpression : public ThreadPlanCallFunction
{
public:
ThreadPlanCallUserExpression (Thread &thread,
Address &function,
lldb::addr_t arg,
bool stop_other_threads,
bool discard_on_error,
lldb::addr_t *this_arg,
lldb::addr_t *cmd_arg,
ClangUserExpression::ClangUserExpressionSP &user_expression_sp);
virtual
~ThreadPlanCallUserExpression ();
virtual void
GetDescription (Stream *s, lldb::DescriptionLevel level);
virtual void
WillPop ()
{
ThreadPlanCallFunction::WillPop();
if (m_user_expression_sp)
m_user_expression_sp.reset();
}
virtual lldb::StopInfoSP
GetRealStopInfo();
protected:
private:
ClangUserExpression::ClangUserExpressionSP m_user_expression_sp; // This is currently just used to ensure the
// User expression the initiated this ThreadPlan
// lives as long as the thread plan does.
DISALLOW_COPY_AND_ASSIGN (ThreadPlanCallUserExpression);
};
} // namespace lldb_private
#endif // liblldb_ThreadPlanCallUserExpression_h_