forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWriterUtils.h
63 lines (41 loc) · 1.81 KB
/
WriterUtils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//===- WriterUtils.h --------------------------------------------*- C++ -*-===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_WASM_WRITERUTILS_H
#define LLD_WASM_WRITERUTILS_H
#include "llvm/ADT/Twine.h"
#include "llvm/Object/Wasm.h"
#include "llvm/Support/raw_ostream.h"
using llvm::raw_ostream;
namespace lld {
namespace wasm {
struct OutputRelocation {
llvm::wasm::WasmRelocation Reloc;
uint32_t NewIndex;
uint32_t Value;
};
void debugWrite(uint64_t offset, llvm::Twine msg);
void writeUleb128(raw_ostream &OS, uint32_t Number, const char *msg);
void writeSleb128(raw_ostream &OS, int32_t Number, const char *msg);
void writeBytes(raw_ostream &OS, const char *bytes, size_t count,
const char *msg = nullptr);
void writeStr(raw_ostream &OS, const llvm::StringRef String,
const char *msg = nullptr);
void writeU8(raw_ostream &OS, uint8_t byte, const char *msg);
void writeU32(raw_ostream &OS, uint32_t Number, const char *msg);
void writeValueType(raw_ostream &OS, int32_t Type, const char *msg);
void writeSig(raw_ostream &OS, const llvm::wasm::WasmSignature &Sig);
void writeInitExpr(raw_ostream &OS, const llvm::wasm::WasmInitExpr &InitExpr);
void writeLimits(raw_ostream &OS, const llvm::wasm::WasmLimits &Limits);
void writeGlobal(raw_ostream &OS, const llvm::wasm::WasmGlobal &Global);
void writeImport(raw_ostream &OS, const llvm::wasm::WasmImport &Import);
void writeExport(raw_ostream &OS, const llvm::wasm::WasmExport &Export);
void writeReloc(raw_ostream &OS, const OutputRelocation &Reloc);
} // namespace wasm
} // namespace lld
#endif // LLD_WASM_WRITERUTILS_H