#!/usr/bin/env python # # Copyright 2017 WebAssembly Community Group participants # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import argparse import io import json import os import platform import re import struct import sys import shlex import subprocess import find_exe import utils from utils import Error SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) WASM2C_DIR = os.path.join(find_exe.REPO_ROOT_DIR, 'wasm2c') SIMDE_DIR = os.path.join(find_exe.REPO_ROOT_DIR, 'third_party/simde') IS_WINDOWS = sys.platform == 'win32' IS_MACOS = platform.mac_ver()[0] != '' MAX_COMMANDS_PER_FUNCTION = 1024 # GCC has trouble with extremely long function bodies SKIPPED = 3 def ReinterpretF32(f32_bits): return struct.unpack(' 1: base = os.path.splitext(c_filename_input)[0] for j in range(options.num_outputs): c_filenames.append(base + '_' + str(j) + '.c') else: c_filenames.append(utils.ChangeExt(wasm_filename, '.c')) args = ['-n', cwriter.GetModulePrefixUnmangled(i), '--num-outputs', str(options.num_outputs)] wasm2c.RunWithArgs(wasm_filename, '-o', c_filename_input, *args) if options.compile: for j, c_filename in enumerate(c_filenames): o_filenames.append(Compile(cc, c_filename, out_dir, use_c11, *cflags)) cwriter.Write() main_filename = utils.ChangeExt(json_file_path, '-main.c') with open(main_filename, 'w') as out_main_file: out_main_file.write(output.getvalue()) if options.compile: # Compile runtime code source_files = [ main_filename, os.path.join(options.wasmrt_dir, 'wasm-rt-impl.c'), os.path.join(options.wasmrt_dir, 'wasm-rt-exceptions-impl.c'), os.path.join(options.wasmrt_dir, 'wasm-rt-mem-impl.c'), ] for f in source_files: o_filenames.append(Compile(cc, f, out_dir, use_c11, *cflags)) if IS_WINDOWS: exe_ext = '.exe' libs = [] else: exe_ext = '' libs = ['-lm'] main_exe = utils.ChangeExt(json_file_path, exe_ext) Link(cc, o_filenames, main_exe, *libs) # Run the resulting binary if options.run: return subprocess.run([main_exe]).returncode return 0 if __name__ == '__main__': sys.exit(main(sys.argv[1:]))