1 //===-- ClangUtilityFunction.h ----------------------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGUTILITYFUNCTION_H
10 #define LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGUTILITYFUNCTION_H
16 #include "ClangExpressionHelper.h"
18 #include "lldb/Expression/UtilityFunction.h"
19 #include "lldb/lldb-forward.h"
20 #include "lldb/lldb-private.h"
22 namespace lldb_private
{
24 /// \class ClangUtilityFunction ClangUtilityFunction.h
25 /// "lldb/Expression/ClangUtilityFunction.h" Encapsulates a single expression
26 /// for use with Clang
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
34 class ClangUtilityFunction
: public UtilityFunction
{
39 bool isA(const void *ClassID
) const override
{
40 return ClassID
== &ID
|| UtilityFunction::isA(ClassID
);
42 static bool classof(const Expression
*obj
) { return obj
->isA(&ID
); }
47 /// The text of the function. Must be a full translation unit.
50 /// The name of the function, as used in the text.
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
);
57 ~ClangUtilityFunction() override
;
59 ExpressionTypeSystemHelper
*GetTypeSystemHelper() override
{
60 return &m_type_system_helper
;
63 ClangExpressionDeclMap
*DeclMap() { return m_type_system_helper
.DeclMap(); }
65 void ResetDeclMap() { m_type_system_helper
.ResetDeclMap(); }
67 void ResetDeclMap(ExecutionContext
&exe_ctx
, bool keep_result_in_memory
) {
68 m_type_system_helper
.ResetDeclMap(exe_ctx
, keep_result_in_memory
);
71 bool Install(DiagnosticManager
&diagnostic_manager
,
72 ExecutionContext
&exe_ctx
) override
;
75 class ClangUtilityFunctionHelper
76 : public llvm::RTTIExtends
<ClangUtilityFunctionHelper
,
77 ClangExpressionHelper
> {
82 /// Return the object that the parser should use when resolving external
83 /// values. May be NULL if everything should be self-contained.
84 ClangExpressionDeclMap
*DeclMap() override
{
85 return m_expr_decl_map_up
.get();
88 void ResetDeclMap() { m_expr_decl_map_up
.reset(); }
90 void ResetDeclMap(ExecutionContext
&exe_ctx
, bool keep_result_in_memory
);
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.
95 /// \param[in] passthrough
96 /// The ASTConsumer that the returned transformer should send
97 /// the ASTs to after transformation.
99 ASTTransformer(clang::ASTConsumer
*passthrough
) override
{
104 std::unique_ptr
<ClangExpressionDeclMap
> m_expr_decl_map_up
;
107 /// The map to use when parsing and materializing the expression.
108 ClangUtilityFunctionHelper m_type_system_helper
;
111 } // namespace lldb_private
113 #endif // LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_CLANGUTILITYFUNCTION_H