blob: a0a1e4edfb0be2777ea53e40b03eec62e43a4dd1 [file] [log] [blame]
Alexander Shaposhnikov696bd632016-11-26 05:23:44 +00001//===-- UtilityFunction.cpp -------------------------------------*- C++ -*-===//
Jim Ingham151c0322015-09-15 21:13:50 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Jim Ingham151c0322015-09-15 21:13:50 +000010#include <stdio.h>
11#if HAVE_SYS_TYPES_H
Kate Stoneb9c1b512016-09-06 20:57:50 +000012#include <sys/types.h>
Jim Ingham151c0322015-09-15 21:13:50 +000013#endif
14
Jim Ingham151c0322015-09-15 21:13:50 +000015
Jim Ingham151c0322015-09-15 21:13:50 +000016#include "lldb/Core/Module.h"
Jim Ingham151c0322015-09-15 21:13:50 +000017#include "lldb/Core/StreamFile.h"
Sean Callanan579e70c2016-03-19 00:03:59 +000018#include "lldb/Expression/DiagnosticManager.h"
Jim Ingham151c0322015-09-15 21:13:50 +000019#include "lldb/Expression/ExpressionSourceCode.h"
Sean Callanan579e70c2016-03-19 00:03:59 +000020#include "lldb/Expression/FunctionCaller.h"
Jim Ingham151c0322015-09-15 21:13:50 +000021#include "lldb/Expression/IRExecutionUnit.h"
Sean Callanan579e70c2016-03-19 00:03:59 +000022#include "lldb/Expression/UtilityFunction.h"
Jim Ingham151c0322015-09-15 21:13:50 +000023#include "lldb/Host/Host.h"
24#include "lldb/Target/ExecutionContext.h"
Bruce Mitchener804f9812015-10-07 17:22:54 +000025#include "lldb/Target/Process.h"
Jim Ingham151c0322015-09-15 21:13:50 +000026#include "lldb/Target/Target.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000027#include "lldb/Utility/ConstString.h"
Zachary Turner6f9e6902017-03-03 20:56:28 +000028#include "lldb/Utility/Log.h"
Zachary Turnerbf9a7732017-02-02 21:39:50 +000029#include "lldb/Utility/Stream.h"
Jim Ingham151c0322015-09-15 21:13:50 +000030
31using namespace lldb_private;
32using namespace lldb;
33
34//------------------------------------------------------------------
35/// Constructor
36///
37/// @param[in] text
38/// The text of the function. Must be a full translation unit.
39///
40/// @param[in] name
41/// The name of the function, as used in the text.
42//------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +000043UtilityFunction::UtilityFunction(ExecutionContextScope &exe_scope,
44 const char *text, const char *name)
45 : Expression(exe_scope), m_execution_unit_sp(), m_jit_module_wp(),
46 m_function_text(ExpressionSourceCode::g_expression_prefix),
47 m_function_name(name) {
48 if (text && text[0])
49 m_function_text.append(text);
Jim Ingham151c0322015-09-15 21:13:50 +000050}
51
Kate Stoneb9c1b512016-09-06 20:57:50 +000052UtilityFunction::~UtilityFunction() {
53 lldb::ProcessSP process_sp(m_jit_process_wp.lock());
54 if (process_sp) {
55 lldb::ModuleSP jit_module_sp(m_jit_module_wp.lock());
56 if (jit_module_sp)
57 process_sp->GetTarget().GetImages().Remove(jit_module_sp);
58 }
Jim Ingham151c0322015-09-15 21:13:50 +000059}
60
Kate Stoneb9c1b512016-09-06 20:57:50 +000061// FIXME: We should check that every time this is called it is called with the
62// same return type & arguments...
Jim Ingham151c0322015-09-15 21:13:50 +000063
Kate Stoneb9c1b512016-09-06 20:57:50 +000064FunctionCaller *UtilityFunction::MakeFunctionCaller(
65 const CompilerType &return_type, const ValueList &arg_value_list,
Zachary Turner97206d52017-05-12 04:51:55 +000066 lldb::ThreadSP thread_to_use_sp, Status &error) {
Kate Stoneb9c1b512016-09-06 20:57:50 +000067 if (m_caller_up)
Jim Ingham151c0322015-09-15 21:13:50 +000068 return m_caller_up.get();
Kate Stoneb9c1b512016-09-06 20:57:50 +000069
70 ProcessSP process_sp = m_jit_process_wp.lock();
71 if (!process_sp) {
72 error.SetErrorString("Can't make a function caller without a process.");
73 return nullptr;
74 }
75
76 Address impl_code_address;
77 impl_code_address.SetOffset(StartAddress());
78 std::string name(m_function_name);
79 name.append("-caller");
80
81 m_caller_up.reset(process_sp->GetTarget().GetFunctionCallerForLanguage(
82 Language(), return_type, impl_code_address, arg_value_list, name.c_str(),
83 error));
84 if (error.Fail()) {
85
86 return nullptr;
87 }
88 if (m_caller_up) {
89 DiagnosticManager diagnostics;
90
91 unsigned num_errors =
92 m_caller_up->CompileFunction(thread_to_use_sp, diagnostics);
93 if (num_errors) {
94 error.SetErrorStringWithFormat(
95 "Error compiling %s caller function: \"%s\".",
96 m_function_name.c_str(), diagnostics.GetString().c_str());
97 m_caller_up.reset();
98 return nullptr;
99 }
100
101 diagnostics.Clear();
102 ExecutionContext exe_ctx(process_sp);
103
104 if (!m_caller_up->WriteFunctionWrapper(exe_ctx, diagnostics)) {
105 error.SetErrorStringWithFormat(
106 "Error inserting caller function for %s: \"%s\".",
107 m_function_name.c_str(), diagnostics.GetString().c_str());
108 m_caller_up.reset();
109 return nullptr;
110 }
111 }
112 return m_caller_up.get();
Jim Ingham151c0322015-09-15 21:13:50 +0000113}