36 lines · c
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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_TOOLS_LLVM_OBJDUMP_WASMDUMP_H10#define LLVM_TOOLS_LLVM_OBJDUMP_WASMDUMP_H11 12#include "llvm/ADT/SmallVector.h"13 14namespace llvm {15 16class Error;17 18namespace object {19class WasmObjectFile;20class ObjectFile;21class RelocationRef;22} // namespace object23 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 objdump33} // namespace llvm34 35#endif36