[lldb][NFC] Fix all formatting errors in .cpp file headers
Summary:
A *.cpp file header in LLDB (and in LLDB) should like this:
```
//===-- TestUtilities.cpp -------------------------------------------------===//
```
However in LLDB most of our source files have arbitrary changes to this format and
these changes are spreading through LLDB as folks usually just use the existing
source files as templates for their new files (most notably the unnecessary
editor language indicator `-*- C++ -*-` is spreading and in every review
someone is pointing out that this is wrong, resulting in people pointing out that this
is done in the same way in other files).
This patch removes most of these inconsistencies including the editor language indicators,
all the different missing/additional '-' characters, files that center the file name, missing
trailing `===//` (mostly caused by clang-format breaking the line).
Reviewers: aprantl, espindola, jfb, shafik, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: dexonsmith, wuzish, emaste, sdardis, nemanjai, kbarton, MaskRay, atanasyan, arphaman, jfb, abidh, jsji, JDevlieghere, usaxena95, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D73258
2020-01-24 15:23:27 +08:00
|
|
|
//===-- UtilityFunction.cpp -----------------------------------------------===//
|
2015-09-16 05:13:50 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-09-16 05:13:50 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2019-08-07 14:15:01 +08:00
|
|
|
#include "lldb/Host/Config.h"
|
|
|
|
|
2015-09-16 05:13:50 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#if HAVE_SYS_TYPES_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include "lldb/Core/Module.h"
|
|
|
|
#include "lldb/Core/StreamFile.h"
|
2016-03-19 08:03:59 +08:00
|
|
|
#include "lldb/Expression/DiagnosticManager.h"
|
|
|
|
#include "lldb/Expression/FunctionCaller.h"
|
2015-09-16 05:13:50 +08:00
|
|
|
#include "lldb/Expression/IRExecutionUnit.h"
|
2016-03-19 08:03:59 +08:00
|
|
|
#include "lldb/Expression/UtilityFunction.h"
|
2015-09-16 05:13:50 +08:00
|
|
|
#include "lldb/Host/Host.h"
|
|
|
|
#include "lldb/Target/ExecutionContext.h"
|
2015-10-08 01:22:54 +08:00
|
|
|
#include "lldb/Target/Process.h"
|
2015-09-16 05:13:50 +08:00
|
|
|
#include "lldb/Target/Target.h"
|
2017-02-03 05:39:50 +08:00
|
|
|
#include "lldb/Utility/ConstString.h"
|
2017-03-04 04:56:28 +08:00
|
|
|
#include "lldb/Utility/Log.h"
|
2017-02-03 05:39:50 +08:00
|
|
|
#include "lldb/Utility/Stream.h"
|
2015-09-16 05:13:50 +08:00
|
|
|
|
|
|
|
using namespace lldb_private;
|
|
|
|
using namespace lldb;
|
|
|
|
|
2019-11-12 17:04:32 +08:00
|
|
|
char UtilityFunction::ID;
|
|
|
|
|
2015-09-16 05:13:50 +08:00
|
|
|
/// Constructor
|
|
|
|
///
|
2019-03-12 01:09:29 +08:00
|
|
|
/// \param[in] text
|
2015-09-16 05:13:50 +08:00
|
|
|
/// The text of the function. Must be a full translation unit.
|
|
|
|
///
|
2019-03-12 01:09:29 +08:00
|
|
|
/// \param[in] name
|
2015-09-16 05:13:50 +08:00
|
|
|
/// The name of the function, as used in the text.
|
|
|
|
UtilityFunction::UtilityFunction(ExecutionContextScope &exe_scope,
|
2019-11-12 17:04:32 +08:00
|
|
|
const char *text, const char *name)
|
|
|
|
: Expression(exe_scope), m_execution_unit_sp(), m_jit_module_wp(),
|
|
|
|
m_function_text(), m_function_name(name) {}
|
2015-09-16 05:13:50 +08:00
|
|
|
|
|
|
|
UtilityFunction::~UtilityFunction() {
|
|
|
|
lldb::ProcessSP process_sp(m_jit_process_wp.lock());
|
|
|
|
if (process_sp) {
|
|
|
|
lldb::ModuleSP jit_module_sp(m_jit_module_wp.lock());
|
|
|
|
if (jit_module_sp)
|
|
|
|
process_sp->GetTarget().GetImages().Remove(jit_module_sp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: We should check that every time this is called it is called with the
|
|
|
|
// same return type & arguments...
|
|
|
|
|
2016-03-22 03:21:13 +08:00
|
|
|
FunctionCaller *UtilityFunction::MakeFunctionCaller(
|
|
|
|
const CompilerType &return_type, const ValueList &arg_value_list,
|
2017-05-12 12:51:55 +08:00
|
|
|
lldb::ThreadSP thread_to_use_sp, Status &error) {
|
2015-09-16 05:13:50 +08:00
|
|
|
if (m_caller_up)
|
|
|
|
return m_caller_up.get();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-04-27 03:46:39 +08:00
|
|
|
ProcessSP process_sp = m_jit_process_wp.lock();
|
2015-09-16 05:13:50 +08:00
|
|
|
if (!process_sp) {
|
|
|
|
error.SetErrorString("Can't make a function caller without a process.");
|
|
|
|
return nullptr;
|
|
|
|
}
|
2016-03-19 08:03:59 +08:00
|
|
|
|
2016-03-22 03:21:13 +08:00
|
|
|
Address impl_code_address;
|
|
|
|
impl_code_address.SetOffset(StartAddress());
|
2016-03-19 08:03:59 +08:00
|
|
|
std::string name(m_function_name);
|
2015-09-16 05:13:50 +08:00
|
|
|
name.append("-caller");
|
2016-03-19 08:03:59 +08:00
|
|
|
|
2015-09-16 05:13:50 +08:00
|
|
|
m_caller_up.reset(process_sp->GetTarget().GetFunctionCallerForLanguage(
|
|
|
|
Language(), return_type, impl_code_address, arg_value_list, name.c_str(),
|
|
|
|
error));
|
|
|
|
if (error.Fail()) {
|
2016-03-19 08:03:59 +08:00
|
|
|
|
2015-09-16 05:13:50 +08:00
|
|
|
return nullptr;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2016-03-19 08:03:59 +08:00
|
|
|
if (m_caller_up) {
|
|
|
|
DiagnosticManager diagnostics;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-03-22 03:21:13 +08:00
|
|
|
unsigned num_errors =
|
2016-03-19 08:03:59 +08:00
|
|
|
m_caller_up->CompileFunction(thread_to_use_sp, diagnostics);
|
|
|
|
if (num_errors) {
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
"Error compiling %s caller function: \"%s\".",
|
|
|
|
m_function_name.c_str(), diagnostics.GetString().c_str());
|
2015-09-16 05:13:50 +08:00
|
|
|
m_caller_up.reset();
|
|
|
|
return nullptr;
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-03-19 08:03:59 +08:00
|
|
|
diagnostics.Clear();
|
2015-09-16 05:13:50 +08:00
|
|
|
ExecutionContext exe_ctx(process_sp);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2016-03-22 03:21:13 +08:00
|
|
|
if (!m_caller_up->WriteFunctionWrapper(exe_ctx, diagnostics)) {
|
2016-03-19 08:03:59 +08:00
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
"Error inserting caller function for %s: \"%s\".",
|
|
|
|
m_function_name.c_str(), diagnostics.GetString().c_str());
|
2015-09-16 05:13:50 +08:00
|
|
|
m_caller_up.reset();
|
|
|
|
return nullptr;
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
}
|
2015-09-16 05:13:50 +08:00
|
|
|
return m_caller_up.get();
|
|
|
|
}
|