Lines Matching refs:os
25 void writeUleb128(raw_ostream &os, uint64_t number, const Twine &msg);
27 void writeSleb128(raw_ostream &os, int64_t number, const Twine &msg);
29 void writeBytes(raw_ostream &os, const char *bytes, size_t count,
32 void writeStr(raw_ostream &os, StringRef string, const Twine &msg);
34 void writeU8(raw_ostream &os, uint8_t byte, const Twine &msg);
36 void writeU32(raw_ostream &os, uint32_t number, const Twine &msg);
38 void writeValueType(raw_ostream &os, llvm::wasm::ValType type,
41 void writeSig(raw_ostream &os, const llvm::wasm::WasmSignature &sig);
43 void writeI32Const(raw_ostream &os, int32_t number, const Twine &msg);
45 void writeI64Const(raw_ostream &os, int64_t number, const Twine &msg);
47 void writePtrConst(raw_ostream &os, int64_t number, bool is64,
50 void writeMemArg(raw_ostream &os, uint32_t alignment, uint64_t offset);
52 void writeInitExpr(raw_ostream &os, const llvm::wasm::WasmInitExpr &initExpr);
54 void writeInitExprMVP(raw_ostream &os,
57 void writeLimits(raw_ostream &os, const llvm::wasm::WasmLimits &limits);
59 void writeGlobalType(raw_ostream &os, const llvm::wasm::WasmGlobalType &type);
61 void writeTableType(raw_ostream &os, const llvm::wasm::WasmTableType &type);
63 void writeImport(raw_ostream &os, const llvm::wasm::WasmImport &import);
65 void writeExport(raw_ostream &os, const llvm::wasm::WasmExport &export_);