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.
32class DynamicCheckerFunctions {
33public:
34 enum DynamicCheckerFunctionsKind {
35 DCF_Clang,
36 };
37
38 DynamicCheckerFunctions(DynamicCheckerFunctionsKind kind) : m_kind(kind) {}
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
57 DynamicCheckerFunctionsKind GetKind() const { return m_kind; }
58
59private:
60 const DynamicCheckerFunctionsKind m_kind;
61};
62} // namespace lldb_private
63
64#endif // LLDB_EXPRESSION_DYNAMICCHECKERFUNCTIONS_H
65

source code of lldb/include/lldb/Expression/DynamicCheckerFunctions.h