├── .gitmodules ├── Contributing.md ├── LICENSE ├── README.md ├── compile_tests ├── big_mul_fct │ ├── mul.c │ └── mul.wast ├── lot_of_fct │ ├── mul.c │ ├── mul.wast │ └── tmp └── run.sh ├── libwasm └── print.cpp ├── makefile ├── obj └── .gitempty ├── perf_tests ├── branches-gen │ ├── args │ ├── branches.h │ ├── end.c │ ├── end.wast │ ├── gen.sh │ ├── inter.c │ ├── inter.wast │ ├── runner.c │ ├── start.c │ └── start.wast ├── bubble │ ├── args │ ├── bubble.c │ ├── bubble.h │ ├── bubble.wast │ └── runner.c ├── driver.c ├── matrix │ └── mul │ │ ├── args │ │ ├── mul.c │ │ ├── mul.h │ │ ├── mul.wast │ │ └── runner.c ├── run-compile.sh ├── run.sh ├── sum_array │ ├── args │ ├── runner.c │ ├── sum.c │ ├── sum.h │ └── sum.wast └── vector │ ├── daxpy │ ├── args │ ├── runner.c │ ├── vector.c │ ├── vector.h │ └── vector.wast │ └── mul │ ├── args │ ├── runner.c │ ├── vector.c │ ├── vector.h │ └── vector.wast ├── src ├── debug.cpp ├── debug.h ├── main.cpp ├── parser │ ├── base_expression.h │ ├── binop.cpp │ ├── binop.h │ ├── enums.h │ ├── export.h │ ├── expression.cpp │ ├── expression.h │ ├── feature.cpp │ ├── flex.cpp │ ├── function.cpp │ ├── function.h │ ├── function_field.h │ ├── globals.cpp │ ├── globals.h │ ├── import_function.cpp │ ├── import_function.h │ ├── local.h │ ├── memory.cpp │ ├── memory.h │ ├── module.cpp │ ├── module.h │ ├── operation.h │ ├── simple.cpp │ ├── simple.h │ ├── switch_expression.cpp │ ├── switch_expression.h │ ├── unop.cpp │ ├── utility.cpp │ ├── utility.h │ ├── wasm.flex │ ├── wasm.ypp │ ├── wasm_file.cpp │ ├── wasm_file.h │ ├── wasm_script.cpp │ ├── wasm_script.h │ ├── wasm_script_elem.cpp │ └── wasm_script_elem.h ├── passes │ ├── basic.cpp │ ├── basic.h │ ├── driver.cpp │ ├── driver.h │ ├── pass.h │ ├── pass_driver.cpp │ └── pass_driver.h └── print_line.cpp └── wrapper ├── expected-output └── address.wast.log ├── main.cpp ├── run.sh └── supported /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/.gitmodules -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/README.md -------------------------------------------------------------------------------- /compile_tests/big_mul_fct/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/compile_tests/big_mul_fct/mul.c -------------------------------------------------------------------------------- /compile_tests/big_mul_fct/mul.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/compile_tests/big_mul_fct/mul.wast -------------------------------------------------------------------------------- /compile_tests/lot_of_fct/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/compile_tests/lot_of_fct/mul.c -------------------------------------------------------------------------------- /compile_tests/lot_of_fct/mul.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/compile_tests/lot_of_fct/mul.wast -------------------------------------------------------------------------------- /compile_tests/lot_of_fct/tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/compile_tests/lot_of_fct/tmp -------------------------------------------------------------------------------- /compile_tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/compile_tests/run.sh -------------------------------------------------------------------------------- /libwasm/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/libwasm/print.cpp -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/makefile -------------------------------------------------------------------------------- /obj/.gitempty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /perf_tests/branches-gen/args: -------------------------------------------------------------------------------- 1 | 150000 2 | -------------------------------------------------------------------------------- /perf_tests/branches-gen/branches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/branches-gen/branches.h -------------------------------------------------------------------------------- /perf_tests/branches-gen/end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/branches-gen/end.c -------------------------------------------------------------------------------- /perf_tests/branches-gen/end.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/branches-gen/end.wast -------------------------------------------------------------------------------- /perf_tests/branches-gen/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/branches-gen/gen.sh -------------------------------------------------------------------------------- /perf_tests/branches-gen/inter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/branches-gen/inter.c -------------------------------------------------------------------------------- /perf_tests/branches-gen/inter.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/branches-gen/inter.wast -------------------------------------------------------------------------------- /perf_tests/branches-gen/runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/branches-gen/runner.c -------------------------------------------------------------------------------- /perf_tests/branches-gen/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/branches-gen/start.c -------------------------------------------------------------------------------- /perf_tests/branches-gen/start.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/branches-gen/start.wast -------------------------------------------------------------------------------- /perf_tests/bubble/args: -------------------------------------------------------------------------------- 1 | 10000 2 | -------------------------------------------------------------------------------- /perf_tests/bubble/bubble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/bubble/bubble.c -------------------------------------------------------------------------------- /perf_tests/bubble/bubble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/bubble/bubble.h -------------------------------------------------------------------------------- /perf_tests/bubble/bubble.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/bubble/bubble.wast -------------------------------------------------------------------------------- /perf_tests/bubble/runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/bubble/runner.c -------------------------------------------------------------------------------- /perf_tests/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/driver.c -------------------------------------------------------------------------------- /perf_tests/matrix/mul/args: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /perf_tests/matrix/mul/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/matrix/mul/mul.c -------------------------------------------------------------------------------- /perf_tests/matrix/mul/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/matrix/mul/mul.h -------------------------------------------------------------------------------- /perf_tests/matrix/mul/mul.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/matrix/mul/mul.wast -------------------------------------------------------------------------------- /perf_tests/matrix/mul/runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/matrix/mul/runner.c -------------------------------------------------------------------------------- /perf_tests/run-compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/run-compile.sh -------------------------------------------------------------------------------- /perf_tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/run.sh -------------------------------------------------------------------------------- /perf_tests/sum_array/args: -------------------------------------------------------------------------------- 1 | 34. -------------------------------------------------------------------------------- /perf_tests/sum_array/runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/sum_array/runner.c -------------------------------------------------------------------------------- /perf_tests/sum_array/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/sum_array/sum.c -------------------------------------------------------------------------------- /perf_tests/sum_array/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/sum_array/sum.h -------------------------------------------------------------------------------- /perf_tests/sum_array/sum.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/sum_array/sum.wast -------------------------------------------------------------------------------- /perf_tests/vector/daxpy/args: -------------------------------------------------------------------------------- 1 | 34. -------------------------------------------------------------------------------- /perf_tests/vector/daxpy/runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/vector/daxpy/runner.c -------------------------------------------------------------------------------- /perf_tests/vector/daxpy/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/vector/daxpy/vector.c -------------------------------------------------------------------------------- /perf_tests/vector/daxpy/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/vector/daxpy/vector.h -------------------------------------------------------------------------------- /perf_tests/vector/daxpy/vector.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/vector/daxpy/vector.wast -------------------------------------------------------------------------------- /perf_tests/vector/mul/args: -------------------------------------------------------------------------------- 1 | 34. -------------------------------------------------------------------------------- /perf_tests/vector/mul/runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/vector/mul/runner.c -------------------------------------------------------------------------------- /perf_tests/vector/mul/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/vector/mul/vector.c -------------------------------------------------------------------------------- /perf_tests/vector/mul/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/vector/mul/vector.h -------------------------------------------------------------------------------- /perf_tests/vector/mul/vector.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/perf_tests/vector/mul/vector.wast -------------------------------------------------------------------------------- /src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/debug.cpp -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/parser/base_expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/base_expression.h -------------------------------------------------------------------------------- /src/parser/binop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/binop.cpp -------------------------------------------------------------------------------- /src/parser/binop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/binop.h -------------------------------------------------------------------------------- /src/parser/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/enums.h -------------------------------------------------------------------------------- /src/parser/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/export.h -------------------------------------------------------------------------------- /src/parser/expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/expression.cpp -------------------------------------------------------------------------------- /src/parser/expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/expression.h -------------------------------------------------------------------------------- /src/parser/feature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/feature.cpp -------------------------------------------------------------------------------- /src/parser/flex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/flex.cpp -------------------------------------------------------------------------------- /src/parser/function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/function.cpp -------------------------------------------------------------------------------- /src/parser/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/function.h -------------------------------------------------------------------------------- /src/parser/function_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/function_field.h -------------------------------------------------------------------------------- /src/parser/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/globals.cpp -------------------------------------------------------------------------------- /src/parser/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/globals.h -------------------------------------------------------------------------------- /src/parser/import_function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/import_function.cpp -------------------------------------------------------------------------------- /src/parser/import_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/import_function.h -------------------------------------------------------------------------------- /src/parser/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/local.h -------------------------------------------------------------------------------- /src/parser/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/memory.cpp -------------------------------------------------------------------------------- /src/parser/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/memory.h -------------------------------------------------------------------------------- /src/parser/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/module.cpp -------------------------------------------------------------------------------- /src/parser/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/module.h -------------------------------------------------------------------------------- /src/parser/operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/operation.h -------------------------------------------------------------------------------- /src/parser/simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/simple.cpp -------------------------------------------------------------------------------- /src/parser/simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/simple.h -------------------------------------------------------------------------------- /src/parser/switch_expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/switch_expression.cpp -------------------------------------------------------------------------------- /src/parser/switch_expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/switch_expression.h -------------------------------------------------------------------------------- /src/parser/unop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/unop.cpp -------------------------------------------------------------------------------- /src/parser/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/utility.cpp -------------------------------------------------------------------------------- /src/parser/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/utility.h -------------------------------------------------------------------------------- /src/parser/wasm.flex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/wasm.flex -------------------------------------------------------------------------------- /src/parser/wasm.ypp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/wasm.ypp -------------------------------------------------------------------------------- /src/parser/wasm_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/wasm_file.cpp -------------------------------------------------------------------------------- /src/parser/wasm_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/wasm_file.h -------------------------------------------------------------------------------- /src/parser/wasm_script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/wasm_script.cpp -------------------------------------------------------------------------------- /src/parser/wasm_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/wasm_script.h -------------------------------------------------------------------------------- /src/parser/wasm_script_elem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/wasm_script_elem.cpp -------------------------------------------------------------------------------- /src/parser/wasm_script_elem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/parser/wasm_script_elem.h -------------------------------------------------------------------------------- /src/passes/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/passes/basic.cpp -------------------------------------------------------------------------------- /src/passes/basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/passes/basic.h -------------------------------------------------------------------------------- /src/passes/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/passes/driver.cpp -------------------------------------------------------------------------------- /src/passes/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/passes/driver.h -------------------------------------------------------------------------------- /src/passes/pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/passes/pass.h -------------------------------------------------------------------------------- /src/passes/pass_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/passes/pass_driver.cpp -------------------------------------------------------------------------------- /src/passes/pass_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/passes/pass_driver.h -------------------------------------------------------------------------------- /src/print_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/src/print_line.cpp -------------------------------------------------------------------------------- /wrapper/expected-output/address.wast.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/wrapper/expected-output/address.wast.log -------------------------------------------------------------------------------- /wrapper/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/wrapper/main.cpp -------------------------------------------------------------------------------- /wrapper/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/wrapper/run.sh -------------------------------------------------------------------------------- /wrapper/supported: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcbeyler/wasm-to-llvm-prototype/HEAD/wrapper/supported --------------------------------------------------------------------------------