This PR shifts the conversion from LCNF mono to lambda pure into the LCNF impure phase. This is preparatory work for the upcoming refactor of IR into LCNF impure. The LCNF impure phase differs from the other LCNF phases in two crucial ways: 1. I decided to have `Decl.type` be the result type as opposed to an arrows from the parameter types to the result type. This is done because impure does not have a notion of arrows anymore so keeping them around for this one particular purpose would be slightly odd. 2. In order to avoid cluttering up the olean size LCNF impure saves only the signature persistently to the disk. This is possible because we no longer have inlining/specialization at this point of compilation so all we need is typing information (and potentially other environment extensions) to guide our analyses.
40 lines
1.2 KiB
Text
40 lines
1.2 KiB
Text
import Lean
|
|
|
|
def f (x : Nat) :=
|
|
(x - 1) + x * 2 + x*x
|
|
|
|
def h (x : Nat) :=
|
|
inline <| f (x + x)
|
|
|
|
/--
|
|
trace: [Compiler.saveMono] size: 8
|
|
def h x : Nat :=
|
|
let _x.1 := Nat.add x x;
|
|
let _x.2 := 1;
|
|
let _x.3 := Nat.sub _x.1 _x.2;
|
|
let _x.4 := 2;
|
|
let _x.5 := Nat.mul _x.1 _x.4;
|
|
let _x.6 := Nat.add _x.3 _x.5;
|
|
let _x.7 := Nat.mul _x.1 _x.1;
|
|
let _x.8 := Nat.add _x.6 _x.7;
|
|
return _x.8
|
|
---
|
|
trace: [Compiler.saveMono] size: 1
|
|
def _private.lean.run.inlineApp.0._eval._lam_0 _x.1 _y.2 _y.3 _y.4 _y.5 _y.6 _y.7 _y.8 : EST.Out Lean.Exception
|
|
lcAny PUnit :=
|
|
let _x.9 := Lean.Compiler.compile _x.1 _y.6 _y.7 _y.8;
|
|
return _x.9
|
|
[Compiler.saveMono] size: 7
|
|
def _private.lean.run.inlineApp.0._eval a.1 a.2 a.3 : EST.Out Lean.Exception lcAny PUnit :=
|
|
let _x.4 := "h";
|
|
let _x.5 := Lean.Name.mkStr1 _x.4;
|
|
let _x.6 := 1;
|
|
let _x.7 := Array.mkEmpty ◾ _x.6;
|
|
let _x.8 := Array.push ◾ _x.7 _x.5;
|
|
let _f.9 := _eval._lam_0.2 _x.8;
|
|
let _x.10 := Lean.Elab.Command.liftTermElabM._redArg _f.9 a.1 a.2 a.3;
|
|
return _x.10
|
|
-/
|
|
#guard_msgs in
|
|
set_option trace.Compiler.saveMono true in
|
|
#eval Lean.Compiler.compile #[``h]
|