From b0a200f97ad40c3e7c9c4a0237b850df1a53db3c Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Sun, 1 Jul 2018 01:31:59 +0430 Subject: update --- dwasm-cpp/misc.hpp | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 dwasm-cpp/misc.hpp (limited to 'dwasm-cpp/misc.hpp') diff --git a/dwasm-cpp/misc.hpp b/dwasm-cpp/misc.hpp new file mode 100644 index 0000000..74f61ad --- /dev/null +++ b/dwasm-cpp/misc.hpp @@ -0,0 +1,50 @@ + +/**********************************************************************************************************************/ +/*first line intentionally left blank.*/ +/*wasm interpreter*/ +/*Copyright (C) 2018 Farzad Sadeghi + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 3 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.*/ +/**********************************************************************************************************************/ +#include +#include +/**********************************************************************************************************************/ +int read_header(std::ifstream& wasm) { + char head[4]; + wasm.read(head, sizeof(uint32_t)); + std::cout << head[0] << head[1] << head[2] << head[3] << "\n"; + wasm.read(head, sizeof(uint32_t)); + std::cout << (int)(head[0]) << (int)(head[1]) << (int)(head[2]) << (int)(head[3]) << "\n"; + return 0; +} + +int dump_file(std::ifstream& wasm) { + while (wasm) { + std::ios::pos_type before = wasm.tellg(); + uint8_t x; + wasm >> x; + std::ios::pos_type after = wasm.tellg(); + std::cout << std::hex << static_cast(x) << "\n"; + } + return 0; +} + +int leb128_u_d(std::vector in) {} +int leb128_s_d(std::vector in) {} +std::vector leb128_u_e() {} +std::vector leb128_s_e() {} +/**********************************************************************************************************************/ +/*last line intentionally left blank.*/ + -- cgit v1.2.3