Files
wasmtime/cranelift/codegen
Andrew Brown d64e454004 Improve uimm128 parsing
This commit changes 128-bit constant parsing in two ways:
 - it adds the ability to use underscores to separate digits when writing a 128-bit constant in hexadecimal; e.g. `0x00010203...` can now be written as `0x0001_0203_...`
 - it adds a new mechanism for parsing 128-bit constants using integer/float/boolean literals; e.g. `vconst.i32x4 [1 2 3 4]`. Note that currently the controlling type of the instruction dictates how many literals to parse inside the brackets.
2019-09-04 07:16:04 -07:00
..
2019-09-04 07:16:04 -07:00
2019-08-30 23:22:48 -07:00

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