summaryrefslogtreecommitdiff
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* Add emcc-build to .gitignore. NFC (#5048)Sam Clegg2022-09-161-0/+1
| | | This directory gets generated by emcc-tests.sh
* Add clangd cache to .gitignore (#5027)M4tr1xt4ng2022-09-131-0/+3
|
* Add .emsdk_version to .gitignore (#4584)juj2022-04-071-0/+3
|
* Remove .o and .obj from gitignore (#3616)Sam Clegg2021-02-251-2/+0
| | | | | | | | Cmake puts all its object files inside CMakeFiles so they are already handled by the CMakeFiles entry. Having `*.o` in this file means that `git status` and `git clean` don't help to find stray `.o` files that one might have made inadvertently in the tree.
* Introduce lit/FileCheck tests (#3367)Thomas Lively2020-11-181-0/+1
| | | | | | | | | | | | | | | lit and FileCheck are the tools used to run the majority of tests in LLVM. Each lit test file contains the commands to be run for that test, so lit tests are much more flexible and can be more precise than our current ad hoc testing system. FileCheck reads expected test output from comments, so it allows test output to be written alongside and interspersed with test input, making tests more readable and precise than in our current system. This PR adds a new suite to check.py that runs lit tests in the test/lit directory. A few tests have been ported to demonstrate the features of the new test runner. This change is motivated by a need for greater flexibility in testing wasm-split. See #3359.
* Add compile_commands.json to .gitignore (#3361)Thomas Lively2020-11-141-0/+1
| | | This file is emitted by CMake when -DCMAKE_EXPORT_COMPILE_COMMANDS is set.
* Only ignore the root `config.h` file (#3256)Blaine Bublitz2020-10-181-1/+1
|
* Add TAGS to .gitignore (#2710)Thomas Lively2020-03-251-0/+2
|
* Reorder git ignores (#2549)Alon Zakai2019-12-221-2/+2
|
* DWARF parsing and writing support using LLVM (#2520)Alon Zakai2019-12-191-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This imports LLVM code for DWARF handling. That code has the Apache 2 license like us. It's also the same code used to emit DWARF in the common toolchain, so it seems like a safe choice. This adds two passes: --dwarfdump which runs the same code LLVM runs for llvm-dwarfdump. This shows we can parse it ok, and will be useful for debugging. And --dwarfupdate writes out the DWARF sections (unchanged from what we read, so it just roundtrips - for updating we need #2515). This puts LLVM in thirdparty which is added here. All the LLVM code is behind USE_LLVM_DWARF, which is on by default, but off in JS for now, as it increases code size by 20%. This current approach imports the LLVM files directly. This is not how they are intended to be used, so it required a bunch of local changes - more than I expected actually, for the platform-specific stuff. For now this seems to work, so it may be good enough, but in the long term we may want to switch to linking against libllvm. A downside to doing that is that binaryen users would need to have an LLVM build, and even in the waterfall builds we'd have a problem - while we ship LLVM there anyhow, we constantly update it, which means that binaryen would need to be on latest llvm all the time too (which otherwise, given DWARF is quite stable, we might not need to constantly update). An even larger issue is that as I did this work I learned about how DWARF works in LLVM, and while the reading code is easy to reuse, the writing code is trickier. The main code path is heavily integrated with the MC layer, which we don't have - we might want to create a "fake MC layer" for that, but it sounds hard. Instead, there is the YAML path which is used mostly for testing, and which can convert DWARF to and from YAML and from binary. Using the non-YAML parts there, we can convert binary DWARF to the YAML layer's nice Info data, then convert that to binary. This works, however, this is not the path LLVM uses normally, and it supports only some basic DWARF sections - I had to add ranges support, in fact. So if we need more complex things, we may end up needing to use the MC layer approach, or consider some other DWARF library. However, hopefully that should not affect the core binaryen code which just calls a library for DWARF stuff. Helps #2400
* Add config.h to .gitignore (#2455)Thomas Lively2019-11-191-0/+1
|
* Fix bitselect operation in C/JS APIs (#2336)Daniel Wirtz2019-09-111-0/+3
| | | In #2328 the SIMDBitselect API has been replaced with SIMDTernary that now has Bitselect as one of multiple operations, which is currently not exposed, unlike the new QFMA/QFMS operations which are exposed. This PR adds it.
* Remove test output from source tree (#2114)Sam Clegg2019-08-211-15/+0
|
* Add more cmake files to gitignore (#2239)Thomas Lively2019-07-191-3/+3
|
* First stage of cleeanup in source tree pollution (#2105)Sam Clegg2019-05-161-37/+22
| | | | | | | | | | | Update build-js.sh to output to `out` directory. This is district from the `bin` directory which is used by the cmake build and may or may not live in the source tree. The `out` directory currently always lives in the source tree. As a followup change I hope to additionally move all test outout into this tree. See #2104
* Shared memory support for add memory import and set memory functions. (#1686)Nidin Vinayakan2018-10-111-0/+4
|
* feat(ignore): add generated files to ignore (#1697)ashley williams2018-10-111-0/+6
|
* Remove s2wasm (#1607)Sam Clegg2018-06-281-1/+0
| | | | s2wasm is no longer used my emscripten and as far as I know now as no other users.
* wasm-opt source map support (#1557)Alon Zakai2018-06-071-0/+1
| | | | | | | | | | * support source map input in wasm-opt, refactoring the loading code into wasm-io * use wasm-io in wasm-as * support output source maps in wasm-opt * add a test for wasm-opt and source maps
* wasm2asm: Finish i64 lowering operations (#1563)Alex Crichton2018-05-251-0/+3
| | | | | | | | | | | | | | | | | * wasm2asm: Finish i64 lowering operations This commit finishes out lowering i64 operations to JS with implementations of division and remainder for JS. The primary change here is to have these compiled from Rust to wasm and then have them "linked in" via intrinsics. The `RemoveNonJSOps` pass has been updated to include some of what `I64ToI32Lowering` was previously doing, basically replacing some instructions with calls to intrinsics. The intrinsics are now all tracked in one location. Hopefully the intrinsics don't need to be regenerated too much, but for posterity the source currently [lives in a gist][gist], although I suspect that gist won't continue to compile and work as-is for all of time. [gist]: https://gist.github.com/alexcrichton/e7ea67bcdd17ce4b6254e66f77165690
* Cleanup .gitignore (#1555)Sam Clegg2018-05-211-13/+11
| | | | As a followup I want to remove the test generated files from here by having the tests write elsewhere.
* Add optimize, shrink level and debug info options to C/JS (#1357)Daniel Wirtz2018-01-171-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add optimize, shrink level and debug info options to C/JS * Add instantiate functionality for creating additional unique instances of the API * Use a workaround when running tests in node Tests misuse a module as a script by concatenating, so instead of catching this case in the library, catch it there * Update sieve test Seems optimized output changed due to running with optimize levels 2/1 now * Use the options with all pass runners * Update relooper-fuzz C-API test * Share defaults between tools and the C-API * Add a test for optimize levels * Unify node test support in check.by and auto_update_tests.py * Also add getters for optimize levels and test them * Also test debugInfo * Add debug info to C tests that used it as well * Fix missing NODEJS import in auto_update_tests * Detect node.js version (WASM support) * Update hello-world JS test (now also runs with node) * feature-test WebAssembly in node instead * Document that these options apply globally, and where * Make sure hello-world.js output doesn't differ between mozjs/node
* Share trap mode between asm2wasm and s2wasm (#1168)jgravelle-google2017-10-021-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Extract Asm2WasmBuilder::TrapMode to shared FloatTrapMode * Extract makeTrappingI32Binary * Extract makeTrappingI64Binary * Extract asm2wasm test script into scripts/test/asm2wasm.py This matches s2wasm.py, and makes iterating on asm2wasm slightly faster. * Simplify callsites with an arg struct * Combine func adding across i32 and i64 * Support f32-to-int in asm2wasm * Add BinaryenTrapMode pass, run pass from s2wasm * BinaryenTrapMode pass takes trap context as a parameter * Pass fully supports non-trapping binary ops * Defer adding functions until after iteration (hackily) * Update asm2wasm to work with deferred function adding, rebuild tests * Extract makeTrappingFloatToInt32 * Extract makeTrappingFloatToInt64 * Add unary conversions to trap pass * Add functions in the pass itself * Set s2wasm trap mode with command-line arguments * Print BINARYEN_PASS_DEBUG state when testing * Get asm2wasm using the BinaryenTrapMode pass instead of handling it inline * Also handle f32 to int in asm2wasm * Make BinaryenTrapMode only need a FloatTrapMode from the caller * Just pass the current binary Expression directly * Combine makeTrappingI32Binary with makeTrappingI64Binary * Pass Unary expr to makeTrappingFloatToInt32 * Unify makeTrappingFloatToInt32 & 64 * Move makeTrapping* functions inside BinaryenTrapMode, make addedFunctions non-static * Remove FloatTrapContext * Minor cleanups * Extract some smaller subfunctions * Emit name switch/casing, rename is32Bit to isI64 for consistency * Rename BinaryenTrapMode to FloatTrap, make trap mode a nested enum * Add some comments explaining why FloatTrap is non-parallel * Rename addedFunctions to generatedFunctions for precision * Rename move and split float-clamp.h to passes/FloatTrap.(h|cpp) * Use builder instead of allocator * Instantiate trap handling passes via the pass manager * Move passes/FloatTrap.h to ast/trapping.h * Add helper function to add trap-handling passes * Add trap mode pass tests * Rename FloatTrap.cpp to TrapMode.cpp * Add s2wasm trap mode tests. Force float->int conversion to be signed * Add trapping_sint_div_s test to unit.asm.js * Fix flake8 issues with test scripts * Update pass description comment * Extract building functions methods * Make generate functions into top-level functions * Add GeneratedTrappingFunctions class to manage function/import additions * Move ensure/makeTrapping functions outside class scope * Use GeneratedTrappingFunctions to add immediately in asm2wasm mode * Remove trapping_sint_div_s test We only added it to test that trapping divisions would get constant-folded at the correct time. Now that we're not changing the timing of trapping modes, the test is unneeded (and problematic). * Review feedback, add validator/*.wasm to .gitignore * Add support for unsigned float-to-int conversion * Use opcode directly instead of bools * Update s2wasm clamp test for unsigned ftoi
* wasm-reduce tool (#1139)Alon Zakai2017-09-011-0/+1
| | | Reduce an interesting wasm to a smaller still interesting wasm. This takes an arbitrary command to run, and reduces the wasm as much as it can while keeping the behavior of that command fixed. This can be used to reduce compiler bugs in an arbitrary VM, etc.
* Move test/local-revision into test/wasm-install (#1157)Sam Clegg2017-08-301-1/+0
| | | | This means you can do `rm -rf test/wasm-install` and have it get redownloaded.
* Initial asm.js output for binaryen-c / binaryen.js (#1136)Daniel Wirtz2017-08-241-0/+1
| | | | * Added BinaryenModulePrintAsmjs (using wasm2asm) + Module#emitAsmjs JS binding
* Improvements to build-js.sh and JS API (#679)Rasmus2016-09-021-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Adds command-line argument to build-js.sh for specifying the location of Emscripten. Also spreads out program arguments on separate lines * Exposes WasmBinaryWriter and BufferWithRandomAccess in the JS API to allow writing WASM modules and access the produced bytes via the JS API * Updates bin/binaryen.js and bin/wasm.js from changes to build-js.sh * Adds exclude patterns to .gitignore for some files generated by build-js.sh and .DS_Store for macOS * Changes build-js.sh to use EMSCRIPTEN env var instead of a command-line argument to provide the path to emscripten * Improvements to JS builds - Adds -g flag to build-js.sh that will build unoptimized and unmangled versions of binaryen.js and wasm.js (output has a "-g.js" suffix to allow co-existence with regular optimized builds). - Enables closure compiler for non-debug builds - Adds browser test for s-expression parser + WASM code gen (requires wasm to be enabled in the browser.) - Adds iterator interface to BufferWithRandomAccess (when Symbol.iterator is available) - Adds toArrayBuffer to BufferWithRandomAccess (when TypedArray is available) - Adds compileWast(sourceText :string) :ArrayBuffer to the module, parsing & compiling s-expression code to a WASM module - Changes the way binaryen.js is exported to allow usage in CommonJS, AMD and UMD envionments. * Expose "Binaryen" global in a better way to work with a.js generated by check.py * Fix to binaryen.js to only export a global variable when running the test (a.js) while inside a module (avoids polluting global in e.g. nodejs). Also fixes a spelling mistake. * Better "no WASM detected" message in test/binaryen.js/browser.html * Small change to error message in build-js.sh where $EMSCRIPTEN does not point to a directory * Changes emcc args in build-js.sh after investingating a large number of argument combinations. Also adds a browser benchmark. The result of emcc arguments and the effect on performance is summarized in this doc: https://gist.github.com/rsms/e33c61a25a31c08260161a087be03169 * Enable inferring emscripten path by looking in PATH when EMSCRIPTEN is not set in env
* update gitignore for autogenerated test files (#657)Dominic Chen2016-08-011-3/+12
|
* Update .gitignore and README.md from wasm-shell/wasm-opt split (#647)Derek Schuff2016-07-191-1/+2
|
* Updated .gitignore for VS meta noise (#576)Peter Jas2016-06-061-0/+8
|
* Allows running check.py on the Mac OSX. (#517)Yury Delendik2016-05-191-0/+1
| | | Also tries to cleanup example.dSYM files and hide libbinaryen.dylib.
* rename binaryen-c library to binaryen (#458)Alon Zakai2016-05-071-1/+1
|
* Added additional files to gitignore.John Bentley2016-05-071-0/+1
|
* Fix untar usageJF Bastien2016-01-171-0/+2
|
* add wasm.js buildAlon Zakai2016-01-171-1/+0
|
* initial work on wasm-disAlon Zakai2016-01-131-0/+1
|
* finish initial pass on wasm-binary, and add wasm-as tool #13Alon Zakai2016-01-111-0/+1
|
* s2wasm torture test: delete output dir when done.JF Bastien2016-01-081-1/+0
|
* Commit the torture .s filesJF Bastien2016-01-061-1/+2
| | | | update.py used to just download them in a folder that .gitignore hid. They'll now be checked in instead, under test/, and lkgr will identify which version of LLVM built them.
* Create update.pyJF Bastien2015-12-311-0/+1
| | | | This is an offshoot from #54 which will use the buildbot output to run tests.
* Add test/__init__.py.JF Bastien2015-12-311-0/+1
|
* Add a support static libraryJF Bastien2015-12-241-0/+1
| | | | For now I've only moved the color check (and made it check the environment only once, note function local static initialization is thread-safe in C++11). This will make the builds slightly faster and allow us to move platform-specific code out of header files (reducing the amount of #include gunk). I'll eventually move other parts of the code to support, especially the command-line parsing (once it's reusable).
* .gitignore ninja filesJF Bastien2015-12-211-0/+3
| | | | They get generated when using cmake -G Ninja.
* more gitignoreAlon Zakai2015-12-191-0/+2
|
* improve gitignoreAlon Zakai2015-12-191-0/+3
|
* process on s2wasm, and first working testcaseAlon Zakai2015-12-101-0/+1
|
* update gitignoreAlon Zakai2015-12-071-0/+1
|
* update .gitignoreAlon Zakai2015-11-111-1/+1
|
* update .gitignoreAlon Zakai2015-11-041-0/+1
|
* prepare for polyfill testingAlon Zakai2015-10-311-1/+1
|