| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
Store templated wasm2c code as .h/.c; build templates on demand
|
|
|
| |
Followup to #1851.
|
|
|
|
|
| |
I'm tempted to followup by removing the "Unix Makefile" support
completely from the top level Makefile (users who really prefer that can
still run cmake directly of course).
|
|
|
| |
Not sure how this line got removed...
|
|
|
|
| |
This is useful for reproducing bugs found by oss-fuzz (see
https://bugs.chromium.org/p/oss-fuzz/issues/list?q=wabt)
|
|
|
|
| |
It's easier to update than gh-pages
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
New `check` target now runs other. This allows for github actions to
show unittests and system tests as separate steps.
Also a couple of CMakeLists.txt cleanups:
- Don't use add_definition to add `-fno-exceptions`, this is a C++-only
flag.
- Lowercase the name of the `sanitizer` function.
- Remove opcode.def from list of library input file. On windows when
building a DLL .def files are assumed to be windows DLL .def files,
which this is not.
This change is split out from #1250
|
|
|
|
| |
We have an i686-gcc build already but it doesn't work on my local
machine.
|
|
|
|
|
|
| |
* Attempt to locate emscripten if EMSCRIPTEN_DIR is not set
* Remove previous
|
|
|
|
|
| |
The current lexer uses re2c. It easy to change, but it generates a huge amount of code, and it's easy to forgot to update it.
This PR rewrites the lexer manually, and uses gperf instead to match keywords. The generated source is much smaller.
|
|
|
|
|
|
|
|
|
| |
It's not correct to use `--pre-js` and `--post-js` to wrap the module in
a function instance; instead we're supposed to use `-s MODULARIZE=1`.
This still keeps the build as (almost) asm.js, as switching to wasm is a
bit more work (we need to preload the wasm binary module).
This fixes issue #853.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This uses a very simple template syntax, without any advanced features:
```
%%top
...
%%bottom
...
```
This template will generate output with two C strings:
```
const char SECTION_NAME(top)[] = ...
...
const char SECTION_NAME(bottom)[] = ...
...
```
To update the generated files, run `make update-wasm2c`.
|
|
|
|
|
| |
EMSCRIPTEN_DIR is meant to be the root directory to find the emscripten
binaries, and EMCC_DIR is meant to be the name of the subdirectory under
`out/` where emscripten build artifacts live.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Remove Bison dependency
* Remove pre-generated parser files
* Rename build config from no-re2c-bison to no-re2c
* Add a simple make_unique implementation
* Move handling of module bindings into ir.cc
* Simplify lexer
- Remove lookahead, the parser handles this now
- Unify Token/LexerToken, it only contains terminal values now
- Refactor setting token type and value into one function (e.g.
LITERAL, RETURN => RETURN_LITERAL)
* New Parser
- Uses two tokens of lookahead (use Peek(0) or Peek(1))
- Consume() consumes one token of any kind
- Match(t) consumes the current token if it matches
- PeekMatch(t) returns true iff the token matches, but doesn't consume
- Basic error synchronization; plenty of room for improvement here
|
|
|
|
|
|
|
| |
* Fix argument parsing in FindRE2C to allow multiple flags
* Condition enum must be generated by re2c
* A couple of characters didn't need to be escaped: / and ^
* `<LINE_COMMENT> [^\n]*` allowed empty strings
* `<*> [^]` conflicted with similar states in other conditions
|
|
|
|
|
|
|
| |
The last build will always be in the bin directory. This also means that
`make install` will install to the "normal" place for that OS, e.g.
`/usr/local/bin`.
Fixes #495.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Update testsuite; various lexing/parsing fixes
Lexer changes:
* Switch re2c parser to UTF-8 parser. This can almost be done "for
free" with a flag, but required a bit of work to allow us to catch
malformed UTF-8 as well.
* Change the re2c fill value to 0xff, since it's never a valid UTF-8 byte.
* Allow for more reserved tokens (basically any ascii aside from
parentheses, double-quote, and semi-colon)
* Remove "infinity" from lexer, only "inf" is allowed now.
* Change definition of EOF token, it was implemented incorrectly. The
correct way to handle it is to only return it from FILL when there is no
more data to fill.
* \r is a valid escape.
Parser changes:
* Changes to match the spec parser:
- block signatures use (result <type>) syntax
- func/global/table/memory can have multiple inline exports
- inline imports are handled in func definition instead of import
definition
- allow for inline modules (i.e. no "(module ...)" s-expr required)
* Remove FuncField. This was previously used for parsing
params/results/locals, but it's less code to just parse
right-recursive (i.e. backward) and insert everything at the front.
This requires reversing the indexes in the BindingHash too.
* Remove the nasty macros `APPEND_FIELD_TO_LIST`,
`APPEND_ITEM_TO_VECTOR`, `APPEND_INLINE_EXPORT`, and
`CHECK_IMPORT_ORDERING`. This behavior is all handled by
`append_module_fields` now.
* All inline imports/exports are handled by returning additional
ModuleFields in a list. This removes the need for `OptionalExport`,
`ExportedFunc`, `ExportedGlobal`, `ExportedTable`, and
`ExportedMemory`.
* Use "_opt" suffix instead of "non_empty_" prefix, e.g.:
- text_list => text_list_opt, non_empty_text_list => text_list
* The locations changed for some symbols, typically the use the name
following the LPAR now, e.g. (import
^^^^^^
* Add PPA for re2c 0.16
* add -y to skip confirmation on travis
|
|
|
|
|
|
|
|
|
|
|
|
| |
This allows you to run:
```
make -j10
```
Without this, Make complains:
make[1]: warning: jobserver unavailable: using -j1. Add '+' to
parent make rule.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Add fuzzing helper scripts, fix fuzzing bugs
The fuzzing dictionary was old, so I updated it. Also, I've added some
simple fuzzing shell scripts that make it a bit easier to run.
Bug fixes:
* Validate function index in local name section before calling callback.
* Fix invalid assert in parse_{float,double}_infinity, which assumed
that "infinity" is required (it could be "inf").
* Bail out of resolve local names if there is no current function (e.g.
if attempting to resolve names in an elem offset expression).
* Catch bad_alloc in wast2wasm and wasm2wast. Without this, afl-fuzz
will see allocation failure as a crash.
* disable exceptions by default, add option, wrap tools in try/catch
|
|
|
|
|
|
|
|
|
|
| |
* ast.{cc,h} => ir.{cc,h}
* binary-reader-ast.{cc,h} => binary-reader-ir.{cc,h}
* ast-writer.{cc,h} => wat-writer.{cc,h}
Everything else changes ast => wast.
When deciding between wast vs. wat, the wat format should only allow for
a single module, without assertions.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This removes the more complicated emscripten wrapper we used before, in
favor of something that is much simpler.
* Remove the memory init file
* Remove the onInputKey handling in the demo so it doesn't auto-indent
(it was broken now that we have the flat syntax)
* Simplify emscripten-helpers to provide very simple C-function wrappers
around the wast2wasm API:
* wabt_parse_ast
* wabt_resolve_names_script
* wabt_validate_script
* wabt_write_binary_module
The tricky part is that some functions return multiple values, so
those are returned as structs as well:
* WabtParseAstResult
* WabtWriteBinaryModuleResult
|
| |
|
|
|
|
|
| |
The built-in CMake rules look for an .hh file instead of a .h when
building for C++. Without it, the build will always think that the
generated parser is stale and rebuild it.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Mostly this involves adding additional casts. Though there are a few
more substantial changes:
* The default method for relocating parser stacks no longer works
because Bison assumes that C++ values can't be memcpy'd. Ours can, but
there's no easy way to make the generated code do the right thing, so
we do it manually
* Removed all uses of WabtBool and replaced with bool
* Renamed all uses of export and mutable -> export_ and mutable_
* Casting an invalid value to an enum triggers ubsan, so we have to be a
little more careful about when we do it (see binary-reader.c:read_sections())
* It's illegal to forward-declare enums, so we just #include instead.
* Designated initializers are not allowed in g++, so we have to switch
them to lazily initialized structures instead. Pretty horrible, so it
will be nice to have a better solution for C++.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This change adds support for writing wasm modules such
that they are compatible with the proposed linking spec:
https://github.com/WebAssembly/tool-conventions/blob/master/Linking.md
Basically this means that wast2wasm will generate and extra
'reloc' sections and will pad any LEBs in the code section
that might require relocation.
This mode is activated by passing the -r flag to wast2wasm.
Also, start work on wasm-link which should be able to link
such modules together.
|
| |
|
| |
|
|
|
|
|
|
| |
* Add wasmdump binary for inspecting wasm files
Run this tool to as part of the 'dump' tests rather
than using the -d flag to wast2wasm.
|
|
|
|
|
| |
Also rename the last few places using SexprWasm, WasmWast. Make
formatting a little nicer too.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* renamed sexpr-wasm to wast2wasm
* renamed 'wasm-wast' binary to 'wasm2wast'
* added commands to generate symlinks to renamed targets
* fixed the issues causing the tests to break
* fixed a name error in travis-test script
* corrected repo name change int README
* renamed binaries in two tests and added a platform check in CMake for symlink generation for UNIX only
* reverted changes in test files due to breakage(for now)
|
|
|
|
| |
It was an interesting experiment, but it is not maintained or tested.
|
|
|
|
|
| |
Also make sanitizer builds into options, instead of just passing the
flags through from the Makefile.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
This matches other files, and will be nicer if other lexers/parsers are
added. Also remove some references to flex, and the flex lexer.
|
| |
|
| |
|
|
|
|
| |
It's pretty clunky though
|
|
|
|
| |
Works by generating an instruction stream for a simple stack machine.
|
| |
|
|
|
|
|
| |
Primarily this is moving the sanitizer builds out of CMakeLists.txt and
into the Makefile. It's much cleaner this way.
|
| |
|
|
|
|
|
|
|
| |
* basic reading works
* update to latest binary format
* read names section
* use setjmp/longjmp for error handling
|
|
|
|
| |
This is used by the Wasm waterfall.
|
|
|
|
|
| |
This is used by the Wasm waterfall. Also, rename the CMake "test" target
to "run-tests", to avoid the nasty warning.
|
| |
|
| |
|