Files
wasmtime/cranelift/codegen
Chris Fallin 2b68abed6a Add vcode test for floating-point, and fix two FP bugs.
- Added a filetest for the vcode output of lowering every handled FP opcode.

- Fixed two bugs that were discovered while going through the lowerings:
  - Saturating FP->int operators would return `u{32,64}::MIN` rather than
    `0` for a NaN input.
  - `fcopysign` did not mask off the sign bit of the value whose sign is
    overwritten.

These probably would have been caught by Wasm conformance tests soon
(and the validity of these lowerings will ultimately be tested this way)
but let's get them right by inspection, too!
2020-04-16 13:43:52 -07:00
..
2020-04-03 13:13:37 -07:00
2019-12-07 09:47:43 -08:00
2020-04-15 17:21:28 -07:00

This crate contains the core Cranelift code generator. It translates code from an intermediate representation into executable machine code.