LLDB mainline
DynamicCheckerFunctions.h
Go to the documentation of this file.
1//===-- DynamicCheckerFunctions.h -------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_EXPRESSION_DYNAMICCHECKERFUNCTIONS_H
10#define LLDB_EXPRESSION_DYNAMICCHECKERFUNCTIONS_H
11
12#include "lldb/lldb-types.h"
13
14#include "llvm/Support/Error.h"
15
16namespace lldb_private {
17
18class DiagnosticManager;
19class ExecutionContext;
20
21/// Encapsulates dynamic check functions used by expressions.
22///
23/// Each of the utility functions encapsulated in this class is responsible
24/// for validating some data that an expression is about to use. Examples
25/// are:
26///
27/// a = *b; // check that b is a valid pointer
28/// [b init]; // check that b is a valid object to send "init" to
29///
30/// The class installs each checker function into the target process and makes
31/// it available to IRDynamicChecks to use.
33public:
36 };
37
39 virtual ~DynamicCheckerFunctions() = default;
40
41 /// Install the utility functions into a process. This binds the instance
42 /// of DynamicCheckerFunctions to that process.
43 ///
44 /// \param[in] diagnostic_manager
45 /// A diagnostic manager to report errors to.
46 ///
47 /// \param[in] exe_ctx
48 /// The execution context to install the functions into.
49 ///
50 /// \return
51 /// Either llvm::ErrorSuccess or Error with llvm::ErrorInfo
52 ///
53 virtual llvm::Error Install(DiagnosticManager &diagnostic_manager,
54 ExecutionContext &exe_ctx) = 0;
55 virtual bool DoCheckersExplainStop(lldb::addr_t addr, Stream &message) = 0;
56
58
59private:
61};
62} // namespace lldb_private
63
64#endif // LLDB_EXPRESSION_DYNAMICCHECKERFUNCTIONS_H
Encapsulates dynamic check functions used by expressions.
DynamicCheckerFunctionsKind GetKind() const
virtual ~DynamicCheckerFunctions()=default
virtual llvm::Error Install(DiagnosticManager &diagnostic_manager, ExecutionContext &exe_ctx)=0
Install the utility functions into a process.
const DynamicCheckerFunctionsKind m_kind
virtual bool DoCheckersExplainStop(lldb::addr_t addr, Stream &message)=0
DynamicCheckerFunctions(DynamicCheckerFunctionsKind kind)
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
A class that represents a running process on the host machine.
uint64_t addr_t
Definition: lldb-types.h:80