Files
wasmtime/docs
Jakob Stoklund Olesen 84172ddf98 Define live range splitting instructions.
The copy/spill/fill instructions will be used by the register allocator
for splitting live ranges. The copy instruction is also useful when
rewriting values:

If a primary value is rewritten as a secondary result, a copy
instruction can be used instead:

  a = foo x
=>
  t, vx1 = call ...
  a = copy vx1

Since a primary value must be the first value of an instruction, this
doesn't work:

  a = foo x
=>
  t, a = call ...
2016-10-20 15:34:16 -07:00
..
2016-01-12 16:51:35 -08:00
2016-09-23 11:37:40 -07:00
2016-01-21 14:25:16 -08:00
2016-07-22 10:06:51 -07:00
2016-09-23 11:37:40 -07:00
2016-01-12 16:51:35 -08:00
2016-09-23 11:37:40 -07:00