LLDB mainline
ThreadPlanCallUserExpression.h
Go to the documentation of this file.
1//===-- ThreadPlanCallUserExpression.h --------------------------------*- C++
2//-*-===//
3//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLDB_TARGET_THREADPLANCALLUSEREXPRESSION_H
11#define LLDB_TARGET_THREADPLANCALLUSEREXPRESSION_H
12
13#include "lldb/Target/Thread.h"
16#include "lldb/lldb-private.h"
17
18#include "llvm/ADT/ArrayRef.h"
19
20namespace lldb_private {
21
23public:
25 llvm::ArrayRef<lldb::addr_t> args,
26 const EvaluateExpressionOptions &options,
27 lldb::UserExpressionSP &user_expression_sp);
28
30
31 void GetDescription(Stream *s, lldb::DescriptionLevel level) override;
32
33 void DidPush() override;
34
35 void DidPop() override;
36
38
39 bool MischiefManaged() override;
40
42
44 return m_result_var_sp;
45 }
46
47protected:
48 void DoTakedown(bool success) override;
49private:
51 m_user_expression_sp; // This is currently just used to ensure the
52 // User expression the initiated this ThreadPlan
53 // lives as long as the thread plan does.
56 m_result_var_sp; // If we are left to manage the materialization,
57 // then stuff the result expression variable here.
58
62};
63
64} // namespace lldb_private
65
66#endif // LLDB_TARGET_THREADPLANCALLUSEREXPRESSION_H
A section + offset based address class.
Definition: Address.h:62
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
ThreadPlanCallUserExpression(const ThreadPlanCallUserExpression &)=delete
lldb::ExpressionVariableSP GetExpressionVariable() override
void GetDescription(Stream *s, lldb::DescriptionLevel level) override
Print a description of this thread to the stream s.
const ThreadPlanCallUserExpression & operator=(const ThreadPlanCallUserExpression &)=delete
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
DescriptionLevel
Description levels for "void GetDescription(Stream *, DescriptionLevel)" calls.
std::shared_ptr< lldb_private::ExpressionVariable > ExpressionVariableSP
Definition: lldb-forward.h:343
std::shared_ptr< lldb_private::UserExpression > UserExpressionSP
Definition: lldb-forward.h:324
std::shared_ptr< lldb_private::StopInfo > StopInfoSP
Definition: lldb-forward.h:419