LLDB mainline
ClangUtilityFunction.cpp
Go to the documentation of this file.
1//===-- ClangUtilityFunction.cpp ------------------------------------------===//
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
14
15#include <cstdio>
16#include <sys/types.h>
17
18
19#include "lldb/Core/Module.h"
22#include "lldb/Host/Host.h"
24#include "lldb/Target/Target.h"
26#include "lldb/Utility/Log.h"
27#include "lldb/Utility/Stream.h"
28
29using namespace lldb_private;
30
32
34 std::string text, std::string name,
35 bool enable_debugging)
37 exe_scope,
38 std::string(ClangExpressionSourceCode::g_expression_prefix) + text +
39 std::string(ClangExpressionSourceCode::g_expression_suffix),
40 std::move(name), enable_debugging) {
41 // Write the source code to a file so that LLDB's source manager can display
42 // it when debugging the code.
43 if (enable_debugging) {
44 int temp_fd = -1;
45 llvm::SmallString<128> result_path;
46 llvm::sys::fs::createTemporaryFile("lldb", "expr", temp_fd, result_path);
47 if (temp_fd != -1) {
49 text = "#line 1 \"" + std::string(result_path) + "\"\n" + text;
50 size_t bytes_written = text.size();
51 file.Write(text.c_str(), bytes_written);
52 if (bytes_written == text.size()) {
53 // If we successfully wrote the source to a temporary file, replace the
54 // function text with the next text containing the line directive.
58 }
59 file.Close();
60 }
61 }
62}
63
65
66/// Install the utility function into a process
67///
68/// \param[in] diagnostic_manager
69/// A diagnostic manager to report errors and warnings to.
70///
71/// \param[in] exe_ctx
72/// The execution context to install the utility function to.
73///
74/// \return
75/// True on success (no errors); false otherwise.
77 ExecutionContext &exe_ctx) {
79 diagnostic_manager.PutString(eDiagnosticSeverityWarning,
80 "already installed");
81 return false;
82 }
83
84 ////////////////////////////////////
85 // Set up the target and compiler
86 //
87
88 Target *target = exe_ctx.GetTargetPtr();
89
90 if (!target) {
91 diagnostic_manager.PutString(eDiagnosticSeverityError, "invalid target");
92 return false;
93 }
94
95 Process *process = exe_ctx.GetProcessPtr();
96
97 if (!process) {
98 diagnostic_manager.PutString(eDiagnosticSeverityError, "invalid process");
99 return false;
100 }
101
102 // Since we might need to call allocate memory and maybe call code to make
103 // the caller, we need to be stopped.
104 if (process->GetState() != lldb::eStateStopped) {
105 diagnostic_manager.PutString(eDiagnosticSeverityError, "process running");
106 return false;
107 }
108 //////////////////////////
109 // Parse the expression
110 //
111
112 bool keep_result_in_memory = false;
113
114 ResetDeclMap(exe_ctx, keep_result_in_memory);
115
116 if (!DeclMap()->WillParse(exe_ctx, nullptr)) {
117 diagnostic_manager.PutString(
119 "current process state is unsuitable for expression parsing");
120 return false;
121 }
122
123 const bool generate_debug_info = true;
125 generate_debug_info);
126
127 unsigned num_errors = parser.Parse(diagnostic_manager);
128
129 if (num_errors) {
130 ResetDeclMap();
131
132 return false;
133 }
134
135 //////////////////////////////////
136 // JIT the output of the parser
137 //
138
139 bool can_interpret = false; // should stay that way
140
141 Status jit_error = parser.PrepareForExecution(
143 can_interpret, eExecutionPolicyAlways);
144
146 m_jit_process_wp = process->shared_from_this();
147 if (parser.GetGenerateDebugInfo()) {
148 lldb::ModuleSP jit_module_sp(m_execution_unit_sp->GetJITModule());
149
150 if (jit_module_sp) {
151 ConstString const_func_name(FunctionName());
152 FileSpec jit_file;
153 jit_file.SetFilename(const_func_name);
154 jit_module_sp->SetFileSpecAndObjectName(jit_file, ConstString());
155 m_jit_module_wp = jit_module_sp;
156 target->GetImages().Append(jit_module_sp);
157 }
158 }
159 }
160
161 DeclMap()->DidParse();
162
163 ResetDeclMap();
164
165 if (jit_error.Success()) {
166 return true;
167 } else {
168 const char *error_cstr = jit_error.AsCString();
169 if (error_cstr && error_cstr[0]) {
170 diagnostic_manager.Printf(eDiagnosticSeverityError, "%s", error_cstr);
171 } else {
172 diagnostic_manager.PutString(eDiagnosticSeverityError,
173 "expression can't be interpreted or run");
174 }
175 return false;
176 }
177}
178
180
182 ExecutionContext &exe_ctx, bool keep_result_in_memory) {
183 std::shared_ptr<ClangASTImporter> ast_importer;
184 auto *state = exe_ctx.GetTargetSP()->GetPersistentExpressionStateForLanguage(
186 if (state) {
187 auto *persistent_vars = llvm::cast<ClangPersistentVariables>(state);
188 ast_importer = persistent_vars->GetClangASTImporter();
189 }
190 m_expr_decl_map_up = std::make_unique<ClangExpressionDeclMap>(
191 keep_result_in_memory, nullptr, exe_ctx.GetTargetSP(), ast_importer,
192 nullptr);
193}
void DidParse()
Disable the state needed for parsing and IR transformation.
"lldb/Expression/ClangExpressionParser.h" Encapsulates an instance of Clang that can parse expression...
Status PrepareForExecution(lldb::addr_t &func_addr, lldb::addr_t &func_end, lldb::IRExecutionUnitSP &execution_unit_sp, ExecutionContext &exe_ctx, bool &can_interpret, lldb_private::ExecutionPolicy execution_policy) override
Ready an already-parsed expression for execution, possibly evaluating it statically.
unsigned Parse(DiagnosticManager &diagnostic_manager)
Parse a single expression and convert it to IR using Clang.
std::unique_ptr< ClangExpressionDeclMap > m_expr_decl_map_up
ClangExpressionDeclMap * DeclMap()
ClangUtilityFunction(ExecutionContextScope &exe_scope, std::string text, std::string name, bool enable_debugging)
Constructor.
bool Install(DiagnosticManager &diagnostic_manager, ExecutionContext &exe_ctx) override
Install the utility function into a process.
A uniqued constant string class.
Definition: ConstString.h:40
size_t Printf(DiagnosticSeverity severity, const char *format,...) __attribute__((format(printf
size_t void PutString(DiagnosticSeverity severity, llvm::StringRef str)
"lldb/Target/ExecutionContextScope.h" Inherit from this if your object can reconstruct its execution ...
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
ExecutionContextScope * GetBestExecutionContextScope() const
const lldb::TargetSP & GetTargetSP() const
Get accessor to get the target shared pointer.
Target * GetTargetPtr() const
Returns a pointer to the target object.
Process * GetProcessPtr() const
Returns a pointer to the process object.
lldb::addr_t m_jit_end_addr
The address of the JITted function within the JIT allocation.
Definition: Expression.h:99
lldb::ProcessWP m_jit_process_wp
Expression's always have to have a target...
Definition: Expression.h:93
lldb::addr_t m_jit_start_addr
An expression might have a process, but it doesn't need to (e.g.
Definition: Expression.h:96
A file utility class.
Definition: FileSpec.h:56
void SetFilename(ConstString filename)
Filename string set accessor.
Definition: FileSpec.cpp:344
@ eOpenOptionWriteOnly
Definition: File.h:52
void Append(const lldb::ModuleSP &module_sp, bool notify=true)
Append a module to the module list.
Status Close() override
Flush any buffers and release any resources owned by the file.
Definition: File.cpp:307
Status Write(const void *buf, size_t &num_bytes) override
Write bytes from buf to a file at the current file position.
Definition: File.cpp:545
A plug-in interface definition class for debugging a process.
Definition: Process.h:335
lldb::StateType GetState()
Get accessor for the current process state.
Definition: Process.cpp:1312
An error handling class.
Definition: Status.h:44
const char * AsCString(const char *default_error_str="unknown error") const
Get the error string associated with the current error.
Definition: Status.cpp:130
bool Success() const
Test for success condition.
Definition: Status.cpp:287
const ModuleList & GetImages() const
Get accessor for the images for this process.
Definition: Target.h:954
"lldb/Expression/UtilityFunction.h" Encapsulates a bit of source code that provides a function that i...
const char * FunctionName() override
Return the function name that should be used for executing the expression.
std::shared_ptr< IRExecutionUnit > m_execution_unit_sp
std::string m_function_text
The text of the function. Must be a well-formed translation unit.
#define LLDB_INVALID_ADDRESS
Definition: lldb-defines.h:74
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
@ eStateStopped
Process or thread is stopped and can be examined.
@ eLanguageTypeC
Non-standardized C, such as K&R.