summaryrefslogtreecommitdiff
path: root/test/run-spec-wasm2c.py
blob: 741722f94b821dbbd120351884653362f3ab42ca (plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
#!/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.
#

from __future__ import print_function
import argparse
try:
  from cStringIO import StringIO
except ImportError:
  from io import StringIO
import json
import os
import re
import struct
import subprocess
import sys

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')


def ReinterpretF32(f32_bits):
  return struct.unpack('<f', struct.pack('<I', f32_bits))[0]

def F32ToC(f32_bits):
  F32_SIGN_BIT = 0x80000000
  F32_INF = 0x7f800000
  F32_SIG_MASK = 0x7fffff

  if (f32_bits & F32_INF) == F32_INF:
    sign = '-' if (f32_bits & F32_SIGN_BIT) == F32_SIGN_BIT else ''
    # NaN or infinity
    if f32_bits & F32_SIG_MASK:
      # NaN
      return '%smake_nan_f32(0x%06x)' % (sign, f32_bits & F32_SIG_MASK)
    else:
      return '%sINFINITY' % sign
  elif f32_bits == F32_SIGN_BIT:
    return '-0.f'
  else:
    s = '%.9g' % ReinterpretF32(f32_bits)
    if '.' not in s:
      s += '.'
    return s + 'f'


def ReinterpretF64(f64_bits):
  return struct.unpack('<d', struct.pack('<Q', f64_bits))[0]

def F64ToC(f64_bits):
  F64_SIGN_BIT = 0x8000000000000000
  F64_INF = 0x7ff0000000000000
  F64_SIG_MASK = 0xfffffffffffff

  if (f64_bits & F64_INF) == F64_INF:
    sign = '-' if (f64_bits & F64_SIGN_BIT) == F64_SIGN_BIT else ''
    # NaN or infinity
    if f64_bits & F64_SIG_MASK:
      # NaN
      return '%smake_nan_f64(0x%06x)' % (sign, f64_bits & F64_SIG_MASK)
    else:
      return '%sINFINITY' % sign
  elif f64_bits == F64_SIGN_BIT:
    return '-0.0'
  else:
    return '%.17g' % ReinterpretF64(f64_bits)


def MangleType(t):
  return {'i32': 'i', 'i64': 'j', 'f32': 'f', 'f64': 'd'}[t]


def MangleTypes(types):
  if not types:
    return 'v'
  return ''.join(MangleType(t) for t in types)


def MangleName(s):
  result = 'Z_'
  for c in s:
    # NOTE(binji): Z is not allowed.
    if c in '_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXY0123456789':
      result += c
    else:
      result += 'Z%02X' % ord(c)
  return result


def IsModuleCommand(command):
  return (command['type'] == 'module' or
          command['type'] == 'assert_uninstantiable')


class CWriter(object):

  def __init__(self, spec_json, prefix, out_file, out_dir):
    self.source_filename = os.path.basename(spec_json['source_filename'])
    self.commands = spec_json['commands']
    self.out_file = out_file
    self.out_dir = out_dir
    self.prefix = prefix
    self.module_idx = 0
    self.module_name_to_idx = {}
    self.module_prefix_map = {}

  def Write(self):
    self._MaybeWriteDummyModule()
    self._CacheModulePrefixes()
    self._WriteIncludes()
    self.out_file.write(self.prefix)
    self.out_file.write("\nvoid run_spec_tests(void) {\n\n")
    for command in self.commands:
      self._WriteCommand(command)
    self.out_file.write("\n}\n")

  def GetModuleFilenames(self):
    return [c['filename'] for c in self.commands if IsModuleCommand(c)]

  def GetModulePrefix(self, idx_or_name=None):
    if idx_or_name is not None:
      return self.module_prefix_map[idx_or_name]
    return self.module_prefix_map[self.module_idx - 1]

  def _CacheModulePrefixes(self):
    idx = 0
    for command in self.commands:
      if IsModuleCommand(command):
        name = os.path.basename(command['filename'])
        name = os.path.splitext(name)[0]
        name = re.sub(r'[^a-zA-Z0-9_]', '_', name)
        name = MangleName(name)

        self.module_prefix_map[idx] = name

        if 'name' in command:
          self.module_name_to_idx[command['name']] = idx
          self.module_prefix_map[command['name']] = name

        idx += 1
      elif command['type'] == 'register':
        name = MangleName(command['as'])
        if 'name' in command:
          self.module_prefix_map[command['name']] = name
          name_idx = self.module_name_to_idx[command['name']]
        else:
          name_idx = idx - 1

        self.module_prefix_map[name_idx] = name

  def _MaybeWriteDummyModule(self):
    if len(self.GetModuleFilenames()) == 0:
      # This test doesn't have any valid modules, so just use a dummy instead.
      filename = utils.ChangeExt(self.source_filename, '-dummy.wasm')
      with open(os.path.join(self.out_dir, filename), 'wb') as wasm_file:
        wasm_file.write(b'\x00\x61\x73\x6d\x01\x00\x00\x00')

      dummy_command = {'type': 'module', 'line': 0, 'filename': filename}
      self.commands.insert(0, dummy_command)

  def _WriteFileAndLine(self, command):
    self.out_file.write('// %s:%d\n' % (self.source_filename, command['line']))

  def _WriteIncludes(self):
    idx = 0
    for filename in self.GetModuleFilenames():
      header = os.path.splitext(filename)[0] + '.h'
      self.out_file.write(
          '#define WASM_RT_MODULE_PREFIX %s\n' % self.GetModulePrefix(idx))
      self.out_file.write("#include \"%s\"\n" % header)
      self.out_file.write('#undef WASM_RT_MODULE_PREFIX\n\n')
      idx += 1

  def _WriteCommand(self, command):
    command_funcs = {
        'module': self._WriteModuleCommand,
        'assert_uninstantiable': self._WriteAssertUninstantiableCommand,
        'action': self._WriteActionCommand,
        'assert_return': self._WriteAssertReturnCommand,
        'assert_return_canonical_nan': self._WriteAssertReturnNanCommand,
        'assert_return_arithmetic_nan': self._WriteAssertReturnNanCommand,
        'assert_trap': self._WriteAssertActionCommand,
        'assert_exhaustion': self._WriteAssertActionCommand,
    }

    func = command_funcs.get(command['type'])
    if func is not None:
      self._WriteFileAndLine(command)
      func(command)
      self.out_file.write('\n')

  def _WriteModuleCommand(self, command):
    self.module_idx += 1
    self.out_file.write('%sinit();\n' % self.GetModulePrefix())

  def _WriteAssertUninstantiableCommand(self, command):
    self.module_idx += 1
    self.out_file.write('ASSERT_TRAP(%sinit());\n' % self.GetModulePrefix())

  def _WriteActionCommand(self, command):
    self.out_file.write('%s;\n' % self._Action(command))

  def _WriteAssertReturnCommand(self, command):
    expected = command['expected']
    if len(expected) == 1:
      assert_map = {
        'i32': 'ASSERT_RETURN_I32',
        'f32': 'ASSERT_RETURN_F32',
        'i64': 'ASSERT_RETURN_I64',
        'f64': 'ASSERT_RETURN_F64',
      }

      type_ = expected[0]['type']
      assert_macro = assert_map[type_]
      self.out_file.write('%s(%s, %s);\n' %
                          (assert_macro,
                           self._Action(command),
                           self._ConstantList(expected)))
    elif len(expected) == 0:
      self._WriteAssertActionCommand(command)
    else:
      raise Error('Unexpected result with multiple values: %s' % expected)

  def _WriteAssertReturnNanCommand(self, command):
    assert_map = {
      ('assert_return_canonical_nan', 'f32'): 'ASSERT_RETURN_CANONICAL_NAN_F32',
      ('assert_return_canonical_nan', 'f64'): 'ASSERT_RETURN_CANONICAL_NAN_F64',
      ('assert_return_arithmetic_nan', 'f32'): 'ASSERT_RETURN_ARITHMETIC_NAN_F32',
      ('assert_return_arithmetic_nan', 'f64'): 'ASSERT_RETURN_ARITHMETIC_NAN_F64',
    }

    expected = command['expected']
    type_ = expected[0]['type']
    assert_macro = assert_map[(command['type'], type_)]

    self.out_file.write('%s(%s);\n' % (assert_macro, self._Action(command)))

  def _WriteAssertActionCommand(self, command):
    assert_map = {
      'assert_exhaustion': 'ASSERT_EXHAUSTION',
      'assert_return': 'ASSERT_RETURN',
      'assert_trap': 'ASSERT_TRAP',
    }

    assert_macro = assert_map[command['type']]
    self.out_file.write('%s(%s);\n' % (assert_macro, self._Action(command)))

  def _Constant(self, const):
    type_ = const['type']
    value = int(const['value'])
    if type_ == 'i32':
      return '%su' % value
    elif type_ == 'i64':
      return '%sull' % value
    elif type_ == 'f32':
      return F32ToC(value)
    elif type_ == 'f64':
      return F64ToC(value)
    else:
      assert False

  def _ConstantList(self, consts):
    return ', '.join(self._Constant(const) for const in consts)

  def _ActionSig(self, action, expected):
    type_ = action['type']
    result_types = [result['type'] for result in expected]
    arg_types = [arg['type'] for arg in action.get('args', [])]
    if type_ == 'invoke':
      return MangleTypes(result_types) + MangleTypes(arg_types)
    elif type_ == 'get':
      return MangleType(result_types[0])
    else:
      raise Error('Unexpected action type: %s' % type_)

  def _Action(self, command):
    action = command['action']
    expected = command['expected']
    type_ = action['type']
    mangled_module_name = self.GetModulePrefix(action.get('module'))
    field = (mangled_module_name + MangleName(action['field']) +
             MangleName(self._ActionSig(action, expected)))
    if type_ == 'invoke':
      return '%s(%s)' % (field, self._ConstantList(action.get('args', [])))
    elif type_ == 'get':
      return '*%s' % field
    else:
      raise Error('Unexpected action type: %s' % type_)


def Compile(cc, c_filename, out_dir, *args):
  out_dir = os.path.abspath(out_dir)
  o_filename = utils.ChangeDir(utils.ChangeExt(c_filename, '.o'), out_dir)
  cc.RunWithArgs('-c', '-o', o_filename, c_filename, *args, cwd=out_dir)
  return o_filename


def Link(cc, o_filenames, main_exe, out_dir, *args):
  args = ['-o', main_exe] + o_filenames + list(args)
  cc.RunWithArgs(*args, cwd=out_dir)


def main(args):
  parser = argparse.ArgumentParser()
  parser.add_argument('-o', '--out-dir', metavar='PATH',
                      help='output directory for files.')
  parser.add_argument('-P', '--prefix', metavar='PATH', help='prefix file.',
                      default=os.path.join(SCRIPT_DIR, 'spec-wasm2c-prefix.c'))
  parser.add_argument('--bindir', metavar='PATH',
                      default=find_exe.GetDefaultPath(),
                      help='directory to search for all executables.')
  parser.add_argument('--wasmrt-dir', metavar='PATH',
                      help='directory with wasm-rt files', default=WASM2C_DIR)
  parser.add_argument('--cc', metavar='PATH',
                      help='the path to the C compiler', default='cc')
  parser.add_argument('--cflags', metavar='FLAGS',
                      help='additional flags for C compiler.',
                      action='append', default=[])
  parser.add_argument('--compile', help='compile the C code (default)',
                      dest='compile', action='store_true')
  parser.add_argument('--no-compile', help='don\'t compile the C code',
                      dest='compile', action='store_false')
  parser.set_defaults(compile=True)
  parser.add_argument('--no-run', help='don\'t run the compiled executable',
                      dest='run', action='store_false')
  parser.add_argument('-v', '--verbose', help='print more diagnotic messages.',
                      action='store_true')
  parser.add_argument('--no-error-cmdline',
                      help='don\'t display the subprocess\'s commandline when'
                      + ' an error occurs', dest='error_cmdline',
                      action='store_false')
  parser.add_argument('-p', '--print-cmd',
                      help='print the commands that are run.',
                      action='store_true')
  parser.add_argument('file', help='wast file.')
  options = parser.parse_args(args)

  with utils.TempDirectory(options.out_dir, 'run-spec-wasm2c-') as out_dir:
    # Parse JSON file and generate main .c file with calls to test functions.
    wast2json = utils.Executable(
        find_exe.GetWast2JsonExecutable(options.bindir),
        error_cmdline=options.error_cmdline)
    wast2json.AppendOptionalArgs({'-v': options.verbose})

    json_file_path = utils.ChangeDir(
        utils.ChangeExt(options.file, '.json'), out_dir)
    wast2json.RunWithArgs(options.file, '-o', json_file_path)

    wasm2c = utils.Executable(
        find_exe.GetWasm2CExecutable(options.bindir),
        error_cmdline=options.error_cmdline)

    cc = utils.Executable(options.cc, *options.cflags)

    with open(json_file_path) as json_file:
      spec_json = json.load(json_file)

    prefix = ''
    if options.prefix:
      with open(options.prefix) as prefix_file:
        prefix = prefix_file.read() + '\n'

    output = StringIO()
    cwriter = CWriter(spec_json, prefix, output, out_dir)
    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())

    o_filenames = []
    includes = '-I%s' % options.wasmrt_dir

    # Compile wasm-rt-impl.
    wasm_rt_impl_c = os.path.join(options.wasmrt_dir, 'wasm-rt-impl.c')
    o_filenames.append(Compile(cc, wasm_rt_impl_c, out_dir, includes))

    for i, wasm_filename in enumerate(cwriter.GetModuleFilenames()):
      c_filename = utils.ChangeExt(wasm_filename, '.c')
      wasm2c.RunWithArgs(wasm_filename, '-o', c_filename, cwd=out_dir)
      if options.compile:
        defines = '-DWASM_RT_MODULE_PREFIX=%s' % cwriter.GetModulePrefix(i)
        o_filenames.append(Compile(cc, c_filename, out_dir, includes, defines))

    if options.compile:
      main_c = os.path.basename(main_filename)
      o_filenames.append(Compile(cc, main_c, out_dir, includes, defines))
      main_exe = os.path.basename(utils.ChangeExt(json_file_path, ''))
      Link(cc, o_filenames, main_exe, out_dir, '-lm')

    if options.compile and options.run:
      utils.Executable(os.path.join(out_dir, main_exe),
                       forward_stdout=True).RunWithArgs()

  return 0


if __name__ == '__main__':
  try:
    sys.exit(main(sys.argv[1:]))
  except Error as e:
    # TODO(binji): gcc will output unicode quotes in errors since the terminal
    # environment allows it, but python2 stderr will always attempt to convert
    # to ascii first, which fails. This will replace the invalid characters
    # instead, which is ugly, but works.
    sys.stderr.write(u'{0}\n'.format(e).encode('ascii', 'replace'))
    sys.exit(1)