summaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
...
* Makefile can conveniently build multiple executablesBen Smith2016-03-161-9/+11
|
* add back "make clean" phony targetBen Smith2016-03-131-0/+4
|
* build CMakeLists w/out building flex/bisonBen Smith2016-03-121-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 gccBen Smith2016-03-121-1/+6
|
* make --no-print-directory is less verboseBen Smith2016-03-121-2/+2
|
* move prebuild flex/bison to src/prebuiltBen Smith2016-03-121-0/+10
| | | | | Also add make update-{bison,flex} to build it, and modify CMakeLists.txt to use it.
* update README, add test-everything to MakefileBen Smith2016-03-121-0/+6
|
* CMake build worksBen Smith2016-03-121-107/+70
|
* add optimized buildBen Smith2016-02-261-1/+7
|
* rename parser -> bison-parser, lexer -> flex-lexerBen Smith2016-02-241-7/+7
|
* move AST stuff to wasm-ast.{c,h}Ben Smith2016-02-241-1/+2
|
* implement stack allocator, WasmAllocator interfaceBen Smith2016-02-241-1/+1
|
* [fuzz] add fuzz build, and gcc fixes so it buildsBen Smith2016-02-141-0/+18
| | | | | Looks like gcc is a little more strict about potentially unused variables.
* use hash tables for bindingsBen Smith2016-02-131-1/+1
| | | | | For one very large .wast file, this improved the run time from 2 minutes down to 9 seconds.
* refactor Makefile to use macroBen Smith2016-01-061-35/+44
| | | | This will make it easier to add other executables
* add license header to sourcesBen Smith2016-01-051-0/+16
|
* remove trailing slash from "out" in MakefileBen Smith2015-12-241-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/flexBen Smith2015-12-031-1/+1
|
* destroy script before exitingBen Smith2015-12-031-2/+2
| | | | | This fixes some memory leaks. Some memory needs to be freed when the parse fails as well.
* rename WasmBinaryWriter -> WasmWriter, and moveBen Smith2015-12-031-1/+1
| | | | Now we have a WasmWriter, WasmFileWriter and WasmMemoryWriter.
* WIP code for writing v8-native binaryBen Smith2015-12-031-1/+2
|
* check ASTBen Smith2015-12-031-1/+1
|
* move vector stuff to wasm-vector.{c,h}Ben Smith2015-12-031-1/+1
|
* remove wasm-lexer.hBen Smith2015-12-031-1/+1
|
* fix clang buildBen Smith2015-12-031-7/+5
|
* move main function to sexpr-wasm.cBen Smith2015-12-031-12/+3
|
* rename wasm-tokens.h -> wasm2.h, fix parser depsBen Smith2015-12-031-3/+9
|
* generate tokens from bisonBen Smith2015-12-031-3/+6
|
* lexer using flexBen Smith2015-12-031-1/+7
|
* rename hash.* -> wasm-keywords.*Ben Smith2015-10-051-1/+1
|
* add test-everything make targetBen Smith2015-09-251-0/+3
|
* add LSAN and fix memory leaksBen Smith2015-09-241-2/+14
|
* add ASAN/MSAN build of sexpr-wasmBen Smith2015-09-241-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 dependenciesBen Smith2015-09-181-3/+4
|
* add WASM_ prefix to enumsBen Smith2015-09-111-2/+2
|
* rename parse.c -> wasm-parse.cBen Smith2015-09-101-1/+1
|
* starting to move generation out of parserBen Smith2015-09-101-1/+1
|
* Factor out wasm types and parser declarations into their own filesDerek Schuff2015-09-091-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/ directoryBen Smith2015-09-071-1/+1
|
* add .travis.yml and READMEBen Smith2015-09-071-1/+0
|
* use perfect hash to parse expressionsBen Smith2015-09-061-1/+4
|
* test runnerBen Smith2015-09-011-0/+8
|
* Initial commitBen Smith2015-08-311-0/+18