
getRelocationValueString is a dispatcher function that calls the corresponding ELF/COFF/Wasm/MachO implementations that currently live in the llvm-objdump.cpp file. These implementations better be moved to ELFDump.cpp, COFFDump.cpp and other corresponding files, to move platform specific implementation out from the common logic. The patch does that. Also, I had to move ToolSectionFilter helper and SectionFilterIterator, SectionFilter to a header to make them available across the objdump code. Differential revision: https://reviews.llvm.org/D56842 llvm-svn: 351545
54 lines
1.8 KiB
C++
54 lines
1.8 KiB
C++
//===-- WasmDump.cpp - wasm-specific dumper ---------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// This file implements the wasm-specific dumper for llvm-objdump.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm-objdump.h"
|
|
#include "llvm/Object/Wasm.h"
|
|
|
|
using namespace llvm;
|
|
using namespace object;
|
|
|
|
void llvm::printWasmFileHeader(const object::ObjectFile *Obj) {
|
|
const WasmObjectFile *File = dyn_cast<const WasmObjectFile>(Obj);
|
|
|
|
outs() << "Program Header:\n";
|
|
outs() << "Version: 0x";
|
|
outs().write_hex(File->getHeader().Version);
|
|
outs() << "\n";
|
|
}
|
|
|
|
std::error_code
|
|
llvm::getWasmRelocationValueString(const WasmObjectFile *Obj,
|
|
const RelocationRef &RelRef,
|
|
SmallVectorImpl<char> &Result) {
|
|
const wasm::WasmRelocation &Rel = Obj->getWasmRelocation(RelRef);
|
|
symbol_iterator SI = RelRef.getSymbol();
|
|
std::string FmtBuf;
|
|
raw_string_ostream Fmt(FmtBuf);
|
|
if (SI == Obj->symbol_end()) {
|
|
// Not all wasm relocations have symbols associated with them.
|
|
// In particular R_WEBASSEMBLY_TYPE_INDEX_LEB.
|
|
Fmt << Rel.Index;
|
|
} else {
|
|
Expected<StringRef> SymNameOrErr = SI->getName();
|
|
if (!SymNameOrErr)
|
|
return errorToErrorCode(SymNameOrErr.takeError());
|
|
StringRef SymName = *SymNameOrErr;
|
|
Result.append(SymName.begin(), SymName.end());
|
|
}
|
|
Fmt << (Rel.Addend < 0 ? "" : "+") << Rel.Addend;
|
|
Fmt.flush();
|
|
Result.append(FmtBuf.begin(), FmtBuf.end());
|
|
return std::error_code();
|
|
}
|