mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-13 17:00:01 +00:00
![Chandler Carruth](/assets/img/avatar_default.png)
to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
97 lines
4.0 KiB
C++
97 lines
4.0 KiB
C++
//===- xray-extract.cpp: XRay Instrumentation Map Extraction --------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Implementation of the xray-extract.h interface.
|
|
//
|
|
// FIXME: Support other XRay-instrumented binary formats other than ELF.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
#include "func-id-helper.h"
|
|
#include "xray-registry.h"
|
|
#include "llvm/Object/ObjectFile.h"
|
|
#include "llvm/Support/CommandLine.h"
|
|
#include "llvm/Support/Error.h"
|
|
#include "llvm/Support/FileSystem.h"
|
|
#include "llvm/Support/Format.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include "llvm/XRay/InstrumentationMap.h"
|
|
|
|
using namespace llvm;
|
|
using namespace llvm::xray;
|
|
using namespace llvm::yaml;
|
|
|
|
// llvm-xray extract
|
|
// ----------------------------------------------------------------------------
|
|
static cl::SubCommand Extract("extract", "Extract instrumentation maps");
|
|
static cl::opt<std::string> ExtractInput(cl::Positional,
|
|
cl::desc("<input file>"), cl::Required,
|
|
cl::sub(Extract));
|
|
static cl::opt<std::string>
|
|
ExtractOutput("output", cl::value_desc("output file"), cl::init("-"),
|
|
cl::desc("output file; use '-' for stdout"),
|
|
cl::sub(Extract));
|
|
static cl::alias ExtractOutput2("o", cl::aliasopt(ExtractOutput),
|
|
cl::desc("Alias for -output"),
|
|
cl::sub(Extract));
|
|
static cl::opt<bool> ExtractSymbolize("symbolize", cl::value_desc("symbolize"),
|
|
cl::init(false),
|
|
cl::desc("symbolize functions"),
|
|
cl::sub(Extract));
|
|
static cl::alias ExtractSymbolize2("s", cl::aliasopt(ExtractSymbolize),
|
|
cl::desc("alias for -symbolize"),
|
|
cl::sub(Extract));
|
|
|
|
namespace {
|
|
|
|
void exportAsYAML(const InstrumentationMap &Map, raw_ostream &OS,
|
|
FuncIdConversionHelper &FH) {
|
|
// First we translate the sleds into the YAMLXRaySledEntry objects in a deque.
|
|
std::vector<YAMLXRaySledEntry> YAMLSleds;
|
|
auto Sleds = Map.sleds();
|
|
YAMLSleds.reserve(std::distance(Sleds.begin(), Sleds.end()));
|
|
for (const auto &Sled : Sleds) {
|
|
auto FuncId = Map.getFunctionId(Sled.Function);
|
|
if (!FuncId)
|
|
return;
|
|
YAMLSleds.push_back({*FuncId, Sled.Address, Sled.Function, Sled.Kind,
|
|
Sled.AlwaysInstrument,
|
|
ExtractSymbolize ? FH.SymbolOrNumber(*FuncId) : ""});
|
|
}
|
|
Output Out(OS, nullptr, 0);
|
|
Out << YAMLSleds;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
static CommandRegistration Unused(&Extract, []() -> Error {
|
|
auto InstrumentationMapOrError = loadInstrumentationMap(ExtractInput);
|
|
if (!InstrumentationMapOrError)
|
|
return joinErrors(make_error<StringError>(
|
|
Twine("Cannot extract instrumentation map from '") +
|
|
ExtractInput + "'.",
|
|
std::make_error_code(std::errc::invalid_argument)),
|
|
InstrumentationMapOrError.takeError());
|
|
|
|
std::error_code EC;
|
|
raw_fd_ostream OS(ExtractOutput, EC, sys::fs::OpenFlags::F_Text);
|
|
if (EC)
|
|
return make_error<StringError>(
|
|
Twine("Cannot open file '") + ExtractOutput + "' for writing.", EC);
|
|
const auto &FunctionAddresses =
|
|
InstrumentationMapOrError->getFunctionAddresses();
|
|
symbolize::LLVMSymbolizer::Options Opts(
|
|
symbolize::FunctionNameKind::LinkageName, true, true, false, "");
|
|
symbolize::LLVMSymbolizer Symbolizer(Opts);
|
|
llvm::xray::FuncIdConversionHelper FuncIdHelper(ExtractInput, Symbolizer,
|
|
FunctionAddresses);
|
|
exportAsYAML(*InstrumentationMapOrError, OS, FuncIdHelper);
|
|
return Error::success();
|
|
});
|