| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
|
|
|
|
|
|
| |
* Return non-zero on travis if tests fail
Oops, we were silently ignoring tests failures on traivs.
|
|
|
|
|
| |
* Add wabt::string_view, based on C++17 string_view
Also add wabt-unittests to test it.
|
|
|
|
| |
It complicates the code everywhere. It's faster to use a stack
allocator, but not worth the trouble for maintainability.
|
|
|
| |
This simplifies the invocations and aids maintainability.
|
|
|
|
|
| |
Also rename the last few places using SexprWasm, WasmWast. Make
formatting a little nicer too.
|
|
|
|
|
|
|
|
| |
This is followup to (#102) which renamed the executable
files. It propagated the rename the tools and test
runner.
It also fixes the 'run-tests' target which was passing
the wrong argument name to the run_tests.py script.
|
|
|
|
| |
Also, remove uses of readlink -f because they don't work on OSX.
|
| |
|
| |
|
|
|
|
|
| |
Also refactor travis-test.sh a bit so it's easier to add more
executables.
|
|
|
|
|
| |
Primarily this is moving the sanitizer builds out of CMakeLists.txt and
into the Makefile. It's much cleaner this way.
|
|
|
|
|
|
|
|
| |
* write roundtrip files to a different location so two threads don't
fight over writing it (probably should just write it once, but I can
optimize that later)
* refactor travis-test.sh a bit to cleanup passing args to run_tests
* pass args when running gcc/Debug-no-flex-bison
|
| |
|
|
|
|
|
| |
This will test that the prebuilt C source files are updated along with
the .y and .l files.
|
| |
|
|
|