Dan Gohman
ae1a17f6b3
[SimpleJIT] Fix allocation of readonly memory.
...
Fixes #457 .
2018-08-16 18:15:22 -07:00
Dan Gohman
fb1ac22c21
Add fast_finish = true to .travis.yml.
...
This allows us to get the results for stable builds as soon as they're
ready.
2018-08-16 15:26:53 -07:00
Dan Gohman
3d89a8645b
Fix rustfmt errors.
2018-08-16 15:26:53 -07:00
Grégoire Geis
e2badb0ad6
Improvements to error reporting ( #470 )
...
* Fixed error reporting.
* Fixed compile time error when wasm feature is disabled.
* Fixed valid instructions not being printed in print_function_error.
* Fixed errors print_function_error not writing valid instructions after end.
* Made multiple checks non-fatal.
* verify_global_values is no longer fatal.
* Slightly better formatting of errors in pretty_verifier_error.
2018-08-16 11:34:52 -07:00
Dan Gohman
304134d351
Update a testcase for API changes.
2018-08-14 16:47:45 -07:00
Caroline Cullen
5f679a7310
Change command line parsing to clap in serde util #434 ( #435 )
...
* Change command line parsing to clap in serde util #434
2018-08-14 15:18:10 -07:00
Denis Merigoux
ce7b72743c
Updated doc now that Variable is now longer a type parameter
2018-08-14 15:15:09 -07:00
Denis Merigoux
bed8e33c9d
Removed "Variable" parametricity for FunctionBuilder as discussed in PR https://github.com/CraneStation/cranelift/pull/437
2018-08-14 15:15:09 -07:00
Denis Merigoux
b7d2df9307
Rewrote doc with @sunfishcode's comments in mind
2018-08-14 15:15:09 -07:00
Denis Merigoux
73511435d0
Better explanation for how to use FunctionBuilder to deal with variable translation
2018-08-14 15:15:09 -07:00
Dan Gohman
6a07c72867
Bump version to 0.19.0
2018-08-14 12:55:34 -07:00
Dan Gohman
932b4ef9f3
Fix a few declarations for the no_std build.
2018-08-14 12:48:47 -07:00
Dan Gohman
6cf7a975a1
Factor out a repeated string, and reduce the length of a long line.
2018-08-14 12:28:33 -07:00
bjorn3
3f0103f936
Prevent finalize being called more than once per func/data ( fixes #407 )
2018-08-14 10:57:59 -07:00
Grégoire Geis
dbc547091f
Verifier now accepts multiple errors ( fixes #387 ). ( #452 )
...
* Verifier now accepts multiple errors (fixes #387 ).
2018-08-14 10:55:10 -07:00
bjorn3
3f582f7cbd
Legalize br_icmp ( #449 )
...
* Legalize br_icmp
2018-08-13 18:31:39 -07:00
Dan Gohman
bee5210b40
Merge pull request #461 from bjorn3/legalize-bint-i8
...
Legalize bint.i8
2018-08-13 16:02:11 -07:00
Dan Gohman
fad33a6136
Merge pull request #454 from Amanieu/bforest
...
Split bforest into a separate crate
2018-08-13 15:59:34 -07:00
Dan Gohman
51698f93f2
Merge branch 'master' into bforest
2018-08-13 15:55:31 -07:00
Caroline Cullen
6f9982fdf5
Updating Sphinx link and install instructions
2018-08-13 15:46:51 -07:00
Amanieu d'Antras
df7fa19807
Fix README and license
2018-08-13 23:30:09 +02:00
Dan Gohman
4769e67468
Fix a few declarations for the no_std build.
2018-08-13 12:52:43 -07:00
Dan Gohman
3b56b2f4fb
Fix rustfmt errors.
2018-08-13 12:52:09 -07:00
Dan Gohman
d4a83576e4
Add a few miscellaneous comments.
2018-08-13 12:51:49 -07:00
Dan Gohman
f34531ab36
Synchronize cranelift-serde's lint settings with the other crates.
2018-08-13 12:51:49 -07:00
Dan Gohman
cc4bf1c7fb
Deny unstable_features in "std" builds.
2018-08-13 12:51:49 -07:00
Dan Gohman
8bd1b877ef
Elaborate on some comments.
2018-08-13 12:51:49 -07:00
Benjamin Bouvier
a044f58cea
Fixes #404 : Use log.rs and a file-per-thread logger instead of the dbg! macro;
2018-08-13 12:51:14 -07:00
bjorn3
fa65ee7a68
Legalize bint.i8
2018-08-13 21:23:25 +02:00
Daniel Keep
60c2cad06e
Add SimpleJIT internal symbol table.
...
Allows for host programs to directly expose symbols to jitted code without
needing to deal with platform-specific linker arguments, or dynamic
dispatch.
2018-08-13 12:19:31 -07:00
bjorn3
eb01ae530b
Fix gitter link ( fixes #458 )
2018-08-13 11:59:44 -07:00
Amanieu d'Antras
0b548c720c
Don't make the Comparator a type argument for bforest
2018-08-12 15:46:35 +02:00
Amanieu d'Antras
ae3a3c368b
Move bforest into a separate crate
2018-08-12 15:46:35 +02:00
Caroline Cullen
ad184ff9aa
Fixing serde formatting.
2018-08-09 20:12:43 -07:00
Caroline Cullen
9683adec64
Updating documentation for serde
2018-08-09 20:12:43 -07:00
Maddy
32b332b733
Format files.
2018-08-09 19:52:21 -07:00
Maddy
ee9e5cba49
Convert the start function index from a DefinedFuncIndex to a FuncIndex.
2018-08-09 19:52:21 -07:00
Maddy
f5d46cabe7
Use types to distinguish between wasm function body indices and wasm function indices.
2018-08-09 19:52:21 -07:00
Benjamin Bouvier
f7e481d9ac
Implement wasm saturating conversions;
2018-08-09 19:50:41 -07:00
Sergey Pepyakin
9dbfbbde10
Stack Limit as an Argument Purpose ( #372 )
...
* Initial approach.
* Move stack_limit check before opening the frame
* Account for GPRs and frame pointer in stack check
* Check stack_limit example.
* Remove stack_limit attribute code.
Amends #359
* fmt
2018-08-04 06:16:21 -07:00
Dan Gohman
217786e969
Add a note about the "rustc" tag in the issue tracker.
...
And other minor documentation fixes.
2018-08-03 12:17:25 -07:00
Bruce Mitchener
76a7efc8db
Clippy improvements ( #408 )
...
* clippy: Allow subsec_nanos usage for now.
The recommendation from clippy requires Rust 1.27, but we currently
support Rust 1.25 and later.
* Simplify ref pattern matches.
This was recommended by clippy.
2018-08-02 22:10:51 -07:00
Dan Gohman
c0af810ec0
Add an explicit version to the cranelift-codegen-meta dependency.
...
This allows it to work in crates.io.
2018-08-02 20:37:58 -07:00
Dan Gohman
cf2bac139d
Add codegen/meta to publish-all.sh.
2018-08-02 20:28:29 -07:00
Dan Gohman
cd02010a78
Bump version to 0.18.1
2018-08-02 20:10:23 -07:00
Dan Gohman
a52c547d0e
Rename "meta" back to "cranelift-codegen-meta" and publish it.
...
It appears that having the meta directory crate be inside the codegen
directory is not enough to allow codegen to depend on it without it
being published. So, let's just publish it.
2018-08-02 20:04:41 -07:00
Dan Gohman
c4a056a7a0
Bump version to 0.18.0
2018-08-02 18:34:22 -07:00
Dan Gohman
570f7bc20b
Rename "cranelift-meta" to just "meta".
...
This makes it easier for the publish-all.sh script to know to skip this
crate, and it avoids the need to use `extern cranelift_meta as meta`.
2018-08-02 15:36:54 -07:00
Dan Gohman
c5a554db83
Move the comment about Sphinx 1.4 out of the top-level README.
2018-08-02 15:25:09 -07:00
Dan Gohman
5cf2c6f0f7
Update cranelift-meta's Cargo.toml to reflect that it's not published.
2018-08-02 15:25:09 -07:00