1//===-- WasmDump.h - wasm-specific dumper -----------------------*- C++ -*-===//
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
9#ifndef LLVM_TOOLS_LLVM_OBJDUMP_WASMDUMP_H
10#define LLVM_TOOLS_LLVM_OBJDUMP_WASMDUMP_H
11
12#include "llvm/ADT/SmallVector.h"
13
14namespace llvm {
15
16class Error;
17
18namespace object {
19class WasmObjectFile;
20class ObjectFile;
21class RelocationRef;
22} // namespace object
23
24namespace objdump {
25
26Error getWasmRelocationValueString(const object::WasmObjectFile *Obj,
27 const object::RelocationRef &RelRef,
28 llvm::SmallVectorImpl<char> &Result);
29
30void printWasmFileHeader(const object::ObjectFile *O);
31
32} // namespace objdump
33} // namespace llvm
34
35#endif
36

source code of llvm/tools/llvm-objdump/WasmDump.h