Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Makefile can conveniently build multiple executables | Ben Smith | 2016-03-16 | 1 | -9/+11 | |
| | ||||||
* | add back "make clean" phony target | Ben Smith | 2016-03-13 | 1 | -0/+4 | |
| | ||||||
* | build CMakeLists w/out building flex/bison | Ben Smith | 2016-03-12 | 1 | -1/+8 | |
| | | | | | This will test that the prebuilt C source files are updated along with the .y and .l files. | |||||
* | add 32-bit build for gcc | Ben Smith | 2016-03-12 | 1 | -1/+6 | |
| | ||||||
* | make --no-print-directory is less verbose | Ben Smith | 2016-03-12 | 1 | -2/+2 | |
| | ||||||
* | move prebuild flex/bison to src/prebuilt | Ben Smith | 2016-03-12 | 1 | -0/+10 | |
| | | | | | Also add make update-{bison,flex} to build it, and modify CMakeLists.txt to use it. | |||||
* | update README, add test-everything to Makefile | Ben Smith | 2016-03-12 | 1 | -0/+6 | |
| | ||||||
* | CMake build works | Ben Smith | 2016-03-12 | 1 | -107/+70 | |
| | ||||||
* | add optimized build | Ben Smith | 2016-02-26 | 1 | -1/+7 | |
| | ||||||
* | rename parser -> bison-parser, lexer -> flex-lexer | Ben Smith | 2016-02-24 | 1 | -7/+7 | |
| | ||||||
* | move AST stuff to wasm-ast.{c,h} | Ben Smith | 2016-02-24 | 1 | -1/+2 | |
| | ||||||
* | implement stack allocator, WasmAllocator interface | Ben Smith | 2016-02-24 | 1 | -1/+1 | |
| | ||||||
* | [fuzz] add fuzz build, and gcc fixes so it builds | Ben Smith | 2016-02-14 | 1 | -0/+18 | |
| | | | | | Looks like gcc is a little more strict about potentially unused variables. | |||||
* | use hash tables for bindings | Ben Smith | 2016-02-13 | 1 | -1/+1 | |
| | | | | | For one very large .wast file, this improved the run time from 2 minutes down to 9 seconds. | |||||
* | refactor Makefile to use macro | Ben Smith | 2016-01-06 | 1 | -35/+44 | |
| | | | | This will make it easier to add other executables | |||||
* | add license header to sources | Ben Smith | 2016-01-05 | 1 | -0/+16 | |
| | ||||||
* | remove trailing slash from "out" in Makefile | Ben Smith | 2015-12-24 | 1 | -1/+1 | |
| | | | | | Perhaps this will fix #15. I haven't seen it fail, but this seems to be the "official" way to conditionally create a directory in a Makefile. | |||||
* | use wasm_ prefix instead of yy in bison/flex | Ben Smith | 2015-12-03 | 1 | -1/+1 | |
| | ||||||
* | destroy script before exiting | Ben Smith | 2015-12-03 | 1 | -2/+2 | |
| | | | | | This fixes some memory leaks. Some memory needs to be freed when the parse fails as well. | |||||
* | rename WasmBinaryWriter -> WasmWriter, and move | Ben Smith | 2015-12-03 | 1 | -1/+1 | |
| | | | | Now we have a WasmWriter, WasmFileWriter and WasmMemoryWriter. | |||||
* | WIP code for writing v8-native binary | Ben Smith | 2015-12-03 | 1 | -1/+2 | |
| | ||||||
* | check AST | Ben Smith | 2015-12-03 | 1 | -1/+1 | |
| | ||||||
* | move vector stuff to wasm-vector.{c,h} | Ben Smith | 2015-12-03 | 1 | -1/+1 | |
| | ||||||
* | remove wasm-lexer.h | Ben Smith | 2015-12-03 | 1 | -1/+1 | |
| | ||||||
* | fix clang build | Ben Smith | 2015-12-03 | 1 | -7/+5 | |
| | ||||||
* | move main function to sexpr-wasm.c | Ben Smith | 2015-12-03 | 1 | -12/+3 | |
| | ||||||
* | rename wasm-tokens.h -> wasm2.h, fix parser deps | Ben Smith | 2015-12-03 | 1 | -3/+9 | |
| | ||||||
* | generate tokens from bison | Ben Smith | 2015-12-03 | 1 | -3/+6 | |
| | ||||||
* | lexer using flex | Ben Smith | 2015-12-03 | 1 | -1/+7 | |
| | ||||||
* | rename hash.* -> wasm-keywords.* | Ben Smith | 2015-10-05 | 1 | -1/+1 | |
| | ||||||
* | add test-everything make target | Ben Smith | 2015-09-25 | 1 | -0/+3 | |
| | ||||||
* | add LSAN and fix memory leaks | Ben Smith | 2015-09-24 | 1 | -2/+14 | |
| | ||||||
* | add ASAN/MSAN build of sexpr-wasm | Ben Smith | 2015-09-24 | 1 | -9/+38 | |
| | | | | | Also integrate these executables into into test runner, so that they can be run by test/run-d8.py as well. | |||||
* | fix Makefile dependencies | Ben Smith | 2015-09-18 | 1 | -3/+4 | |
| | ||||||
* | add WASM_ prefix to enums | Ben Smith | 2015-09-11 | 1 | -2/+2 | |
| | ||||||
* | rename parse.c -> wasm-parse.c | Ben Smith | 2015-09-10 | 1 | -1/+1 | |
| | ||||||
* | starting to move generation out of parser | Ben Smith | 2015-09-10 | 1 | -1/+1 | |
| | ||||||
* | Factor out wasm types and parser declarations into their own files | Derek Schuff | 2015-09-09 | 1 | -3/+7 | |
| | | | | | | | | First refactoring toward making the parser usable for things other than the sexpr-to-wasm encoder. It moves the wasm types into their own header, the parser types and declarations into their own header, and the parser code into its own source file separate from main and the CLI option parsing. Makes no attempt to actually change the interface yet. | |||||
* | add src/ directory | Ben Smith | 2015-09-07 | 1 | -1/+1 | |
| | ||||||
* | add .travis.yml and README | Ben Smith | 2015-09-07 | 1 | -1/+0 | |
| | ||||||
* | use perfect hash to parse expressions | Ben Smith | 2015-09-06 | 1 | -1/+4 | |
| | ||||||
* | test runner | Ben Smith | 2015-09-01 | 1 | -0/+8 | |
| | ||||||
* | Initial commit | Ben Smith | 2015-08-31 | 1 | -0/+18 | |