/Users/buildslave/jenkins/workspace/coverage/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
Line | Count | Source (jump to first uncovered line) |
1 | | //===-- ClangUtilityFunction.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_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGUTILITYFUNCTION_H |
10 | | #define LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGUTILITYFUNCTION_H |
11 | | |
12 | | #include <map> |
13 | | #include <string> |
14 | | #include <vector> |
15 | | |
16 | | #include "ClangExpressionHelper.h" |
17 | | |
18 | | #include "lldb/Expression/UtilityFunction.h" |
19 | | #include "lldb/lldb-forward.h" |
20 | | #include "lldb/lldb-private.h" |
21 | | |
22 | | namespace lldb_private { |
23 | | |
24 | | /// \class ClangUtilityFunction ClangUtilityFunction.h |
25 | | /// "lldb/Expression/ClangUtilityFunction.h" Encapsulates a single expression |
26 | | /// for use with Clang |
27 | | /// |
28 | | /// LLDB uses expressions for various purposes, notably to call functions |
29 | | /// and as a backend for the expr command. ClangUtilityFunction encapsulates |
30 | | /// a self-contained function meant to be used from other code. Utility |
31 | | /// functions can perform error-checking for ClangUserExpressions, or can |
32 | | /// simply provide a way to push a function into the target for the debugger |
33 | | /// to call later on. |
34 | | class ClangUtilityFunction : public UtilityFunction { |
35 | | // LLVM RTTI support |
36 | | static char ID; |
37 | | |
38 | | public: |
39 | 2.38k | bool isA(const void *ClassID) const override { |
40 | 2.38k | return ClassID == &ID || UtilityFunction::isA(ClassID); |
41 | 2.38k | } |
42 | 0 | static bool classof(const Expression *obj) { return obj->isA(&ID); } |
43 | | |
44 | | /// Constructor |
45 | | /// |
46 | | /// \param[in] text |
47 | | /// The text of the function. Must be a full translation unit. |
48 | | /// |
49 | | /// \param[in] name |
50 | | /// The name of the function, as used in the text. |
51 | | /// |
52 | | /// \param[in] enable_debugging |
53 | | /// Enable debugging of this function. |
54 | | ClangUtilityFunction(ExecutionContextScope &exe_scope, std::string text, |
55 | | std::string name, bool enable_debugging); |
56 | | |
57 | | ~ClangUtilityFunction() override; |
58 | | |
59 | 4.77k | ExpressionTypeSystemHelper *GetTypeSystemHelper() override { |
60 | 4.77k | return &m_type_system_helper; |
61 | 4.77k | } |
62 | | |
63 | 4.77k | ClangExpressionDeclMap *DeclMap() { return m_type_system_helper.DeclMap(); } |
64 | | |
65 | 2.38k | void ResetDeclMap() { m_type_system_helper.ResetDeclMap(); } |
66 | | |
67 | 2.38k | void ResetDeclMap(ExecutionContext &exe_ctx, bool keep_result_in_memory) { |
68 | 2.38k | m_type_system_helper.ResetDeclMap(exe_ctx, keep_result_in_memory); |
69 | 2.38k | } |
70 | | |
71 | | bool Install(DiagnosticManager &diagnostic_manager, |
72 | | ExecutionContext &exe_ctx) override; |
73 | | |
74 | | private: |
75 | | class ClangUtilityFunctionHelper |
76 | | : public llvm::RTTIExtends<ClangUtilityFunctionHelper, |
77 | | ClangExpressionHelper> { |
78 | | public: |
79 | | // LLVM RTTI support |
80 | | static char ID; |
81 | | |
82 | | /// Return the object that the parser should use when resolving external |
83 | | /// values. May be NULL if everything should be self-contained. |
84 | 9.54k | ClangExpressionDeclMap *DeclMap() override { |
85 | 9.54k | return m_expr_decl_map_up.get(); |
86 | 9.54k | } |
87 | | |
88 | 2.38k | void ResetDeclMap() { m_expr_decl_map_up.reset(); } |
89 | | |
90 | | void ResetDeclMap(ExecutionContext &exe_ctx, bool keep_result_in_memory); |
91 | | |
92 | | /// Return the object that the parser should allow to access ASTs. May be |
93 | | /// nullptr if the ASTs do not need to be transformed. |
94 | | /// |
95 | | /// \param[in] passthrough |
96 | | /// The ASTConsumer that the returned transformer should send |
97 | | /// the ASTs to after transformation. |
98 | | clang::ASTConsumer * |
99 | 2.38k | ASTTransformer(clang::ASTConsumer *passthrough) override { |
100 | 2.38k | return nullptr; |
101 | 2.38k | } |
102 | | |
103 | | private: |
104 | | std::unique_ptr<ClangExpressionDeclMap> m_expr_decl_map_up; |
105 | | }; |
106 | | |
107 | | /// The map to use when parsing and materializing the expression. |
108 | | ClangUtilityFunctionHelper m_type_system_helper; |
109 | | }; |
110 | | |
111 | | } // namespace lldb_private |
112 | | |
113 | | #endif // LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGUTILITYFUNCTION_H |