Implements (extended) λPure and λRc proposed in the article "Counting Immutable Beans", Sebastian Ullrich and Leonardo de Moura.
The Lean to IR transformation produces λPure code, and this part is implemented in C++. The procedures described in the paper above are implemented in Lean.
Function identifier
Equations
Instances For
Equations
- Lean.IR.instInhabitedVarId = { default := { idx := default } }
Equations
- Lean.IR.instReprVarId = { reprPrec := Lean.IR.reprVarId✝ }
Equations
- Lean.IR.instInhabitedJoinPointId = { default := { idx := default } }
Equations
- Lean.IR.instReprJoinPointId = { reprPrec := Lean.IR.reprJoinPointId✝ }
Equations
- Lean.IR.instBEqVarId = { beq := fun (a b : Lean.IR.VarId) => a.idx == b.idx }
Equations
- Lean.IR.instToStringVarId = { toString := fun (a : Lean.IR.VarId) => "x_" ++ toString a.idx }
Equations
- Lean.IR.instToFormatVarId = { format := fun (a : Lean.IR.VarId) => Std.Format.text (toString a) }
Equations
- Lean.IR.instHashableVarId = { hash := fun (a : Lean.IR.VarId) => hash a.idx }
Equations
- Lean.IR.instBEqJoinPointId = { beq := fun (a b : Lean.IR.JoinPointId) => a.idx == b.idx }
Equations
- Lean.IR.instToStringJoinPointId = { toString := fun (a : Lean.IR.JoinPointId) => "block_" ++ toString a.idx }
Equations
- Lean.IR.instToFormatJoinPointId = { format := fun (a : Lean.IR.JoinPointId) => Std.Format.text (toString a) }
Equations
- Lean.IR.instHashableJoinPointId = { hash := fun (a : Lean.IR.JoinPointId) => hash a.idx }
Equations
Instances For
Low Level IR types. Most are self explanatory.
usize
represents the C++size_t
Type. We have it here because it is 32-bit in 32-bit machines, and 64-bit in 64-bit machines, and we want the C++ backend for our Compiler to generate platform independent code.irrelevant
for Lean types, propositions and proofs.object
a pointer to a value in the heap.tobject
a pointer to a value in the heap or tagged pointer (i.e., the least significant bit is 1) storing a scalar value.struct
andunion
are used to return small values (e.g.,Option
,Prod
,Except
) on the stack.
Remark: the RC operations for tobject
are slightly more expensive because we
first need to test whether the tobject
is really a pointer or not.
Remark: the Lean runtime assumes that sizeof(void*) == sizeof(sizeT). Lean cannot be compiled on old platforms where this is not True.
Since values of type struct
and union
are only used to return values,
We assume they must be used/consumed "linearly". We use the term "linear" here
to mean "exactly once" in each execution. That is, given x : S
, where S
is a struct,
then one of the following must hold in each (execution) branch.
1- x
occurs only at a single ret x
instruction. That is, it is being consumed by being returned.
2- x
occurs only at a single ctor
. That is, it is being "consumed" by being stored into another struct/union
.
3- We extract (aka project) every single field of x
exactly once. That is, we are consuming x
by consuming each
of one of its components. Minor refinement: we don't need to consume scalar fields or struct/union
fields that do not contain object fields.
- float : IRType
- uint8 : IRType
- uint16 : IRType
- uint32 : IRType
- uint64 : IRType
- usize : IRType
- irrelevant : IRType
- object : IRType
- tobject : IRType
- float32 : IRType
- struct (leanTypeName : Option Name) (types : Array IRType) : IRType
- union (leanTypeName : Name) (types : Array IRType) : IRType
Instances For
Equations
- Lean.IR.instInhabitedIRType = { default := Lean.IR.IRType.float }
Equations
- Lean.IR.instReprIRType = { reprPrec := Lean.IR.reprIRType✝ }
Equations
- Lean.IR.IRType.instBEq = { beq := Lean.IR.IRType.beq }
Equations
Instances For
Arguments to applications, constructors, etc.
We use irrelevant
for Lean types, propositions and proofs that have been erased.
Recall that for a Function f
, we also generate f._rarg
which does not take
irrelevant
arguments. However, f._rarg
is only safe to be used in full applications.
Instances For
Equations
- Lean.IR.instInhabitedArg = { default := Lean.IR.Arg.var default }
Instances For
Equations
- Lean.IR.instBEqLitVal = { beq := Lean.IR.LitVal.beq }
Constructor information.
name
is the Name of the Constructor in Lean.cidx
is the Constructor index (aka tag).size
is the number of arguments of typeobject/tobject
.usize
is the number of arguments of typeusize
.ssize
is the number of bytes used to store scalar values.
Recall that a Constructor object contains a header, then a sequence of
pointers to other Lean objects, a sequence of USize
(i.e., size_t
)
scalar values, and a sequence of other scalar values.
Instances For
Equations
- Lean.IR.instReprCtorInfo = { reprPrec := Lean.IR.reprCtorInfo✝ }
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.IR.instBEqCtorInfo = { beq := Lean.IR.CtorInfo.beq }
Equations
Instances For
- ctor (i : CtorInfo) (ys : Array Arg) : Expr
- reset (n : Nat) (x : VarId) : Expr
- reuse (x : VarId) (i : CtorInfo) (updtHeader : Bool) (ys : Array Arg) : Expr
- proj (i : Nat) (x : VarId) : Expr
- uproj
(i : Nat)
(x : VarId)
: Expr
Extract the
Usize
value at Positionsizeof(void*)*i
fromx
. - sproj
(n offset : Nat)
(x : VarId)
: Expr
Extract the scalar value at Position
sizeof(void*)*n + offset
fromx
. - fap
(c : FunId)
(ys : Array Arg)
: Expr
Full application.
- pap
(c : FunId)
(ys : Array Arg)
: Expr
Partial application that creates a
pap
value (aka closure in our nonstandard terminology). - ap (x : VarId) (ys : Array Arg) : Expr
- box (ty : IRType) (x : VarId) : Expr
- unbox
(x : VarId)
: Expr
Given
x : [t]object
, obtain the scalar value. - lit (v : LitVal) : Expr
Instances For
Equations
- Lean.IR.mkCtorExpr n cidx size usize ssize ys = Lean.IR.Expr.ctor { name := n, cidx := cidx, size := size, usize := usize, ssize := ssize } ys
Instances For
Instances For
Instances For
Instances For
Instances For
Instances For
Instances For
Instances For
Instances For
Equations
- Lean.IR.instInhabitedParam = { default := { x := default, borrow := default, ty := default } }
Equations
- Lean.IR.instReprParam = { reprPrec := Lean.IR.reprParam✝ }
Equations
- Lean.IR.mkParam x borrow ty = { x := x, borrow := borrow, ty := ty }
Instances For
- vdecl (x : VarId) (ty : IRType) (e : Expr) (b : FnBody) : FnBody
- jdecl
(j : JoinPointId)
(xs : Array Param)
(v b : FnBody)
: FnBody
Join point Declaration
block_j (xs) := e; b
- set (x : VarId) (i : Nat) (y : Arg) (b : FnBody) : FnBody
- setTag (x : VarId) (cidx : Nat) (b : FnBody) : FnBody
- uset (x : VarId) (i : Nat) (y : VarId) (b : FnBody) : FnBody
- sset (x : VarId) (i offset : Nat) (y : VarId) (ty : IRType) (b : FnBody) : FnBody
- inc (x : VarId) (n : Nat) (c persistent : Bool) (b : FnBody) : FnBody
- dec (x : VarId) (n : Nat) (c persistent : Bool) (b : FnBody) : FnBody
- del (x : VarId) (b : FnBody) : FnBody
- mdata (d : MData) (b : FnBody) : FnBody
- case (tid : Name) (x : VarId) (xType : IRType) (cs : Array (AltCore FnBody)) : FnBody
- ret (x : Arg) : FnBody
- jmp
(j : JoinPointId)
(ys : Array Arg)
: FnBody
Jump to join point
j
- unreachable : FnBody
Instances For
Equations
- Lean.IR.instInhabitedFnBody = { default := Lean.IR.FnBody.unreachable }
Instances For
Instances For
Instances For
Instances For
Instances For
Instances For
Instances For
Instances For
Instances For
Equations
Instances For
Equations
Instances For
Equations
Instances For
Equations
- Lean.IR.instInhabitedAlt = { default := Lean.IR.Alt.default default }
Equations
- (Lean.IR.FnBody.vdecl x_1 ty e b).body = b
- (Lean.IR.FnBody.jdecl j xs v b).body = b
- (Lean.IR.FnBody.set x_1 i y b).body = b
- (Lean.IR.FnBody.uset x_1 i y b).body = b
- (Lean.IR.FnBody.sset x_1 i offset y ty b).body = b
- (Lean.IR.FnBody.setTag x_1 cidx b).body = b
- (Lean.IR.FnBody.inc x_1 n c persistent b).body = b
- (Lean.IR.FnBody.dec x_1 n c persistent b).body = b
- (Lean.IR.FnBody.del x_1 b).body = b
- (Lean.IR.FnBody.mdata d b).body = b
- x✝.body = x✝
Instances For
Equations
- (Lean.IR.FnBody.vdecl x_2 t v b).setBody x✝ = Lean.IR.FnBody.vdecl x_2 t v x✝
- (Lean.IR.FnBody.jdecl j xs v b).setBody x✝ = Lean.IR.FnBody.jdecl j xs v x✝
- (Lean.IR.FnBody.set x_2 i y b).setBody x✝ = Lean.IR.FnBody.set x_2 i y x✝
- (Lean.IR.FnBody.uset x_2 i y b).setBody x✝ = Lean.IR.FnBody.uset x_2 i y x✝
- (Lean.IR.FnBody.sset x_2 i o y t b).setBody x✝ = Lean.IR.FnBody.sset x_2 i o y t x✝
- (Lean.IR.FnBody.setTag x_2 i b).setBody x✝ = Lean.IR.FnBody.setTag x_2 i x✝
- (Lean.IR.FnBody.inc x_2 n c p b).setBody x✝ = Lean.IR.FnBody.inc x_2 n c p x✝
- (Lean.IR.FnBody.dec x_2 n c p b).setBody x✝ = Lean.IR.FnBody.dec x_2 n c p x✝
- (Lean.IR.FnBody.del x_2 b).setBody x✝ = Lean.IR.FnBody.del x_2 x✝
- (Lean.IR.FnBody.mdata d b).setBody x✝ = Lean.IR.FnBody.mdata d x✝
- x✝¹.setBody x✝ = x✝¹
Instances For
Instances For
Instances For
Instances For
Equations
- Lean.IR.modifyJPs bs f = Array.map (fun (b : Lean.IR.FnBody) => match b with | Lean.IR.FnBody.jdecl j xs v k => Lean.IR.FnBody.jdecl j xs (f v) k | other => other) bs
Instances For
Equations
- Lean.IR.mkAlt n cidx size usize ssize b = Lean.IR.Alt.ctor { name := n, cidx := cidx, size := size, usize := usize, ssize := ssize } b
Instances For
Extra information associated with a declaration.
If
some <blame>
, then declaration depends on<blame>
which uses asorry
axiom.
Instances For
Equations
- Lean.IR.instInhabitedDecl = { default := Lean.IR.Decl.extern default default default default }
Equations
- (Lean.IR.Decl.fdecl f xs type body info).updateBody! bNew = Lean.IR.Decl.fdecl f xs type bNew info
- d.updateBody! bNew = panicWithPosWithDecl "Lean.Compiler.IR.Basic" "Lean.IR.Decl.updateBody!" 433 9 "expected definition"
Instances For
Equations
- Lean.IR.mkDecl f xs ty b = Lean.IR.Decl.fdecl f xs ty b { sorryDep? := none }
Instances For
Instances For
Equations
Instances For
Set of variable and join point names
Equations
Instances For
Equations
- Lean.IR.instInhabitedIndexSet = { default := ∅ }
Instances For
- param : IRType → LocalContextEntry
- localVar : IRType → Expr → LocalContextEntry
- joinPoint : Array Param → FnBody → LocalContextEntry
Instances For
Instances For
Instances For
Equations
Instances For
Instances For
Instances For
Equations
- ctx.isJP idx = match Lean.RBMap.find? ctx idx with | some (Lean.IR.LocalContextEntry.joinPoint a a_1) => true | x => false
Instances For
Equations
- ctx.getJPBody j = match Lean.RBMap.find? ctx j.idx with | some (Lean.IR.LocalContextEntry.joinPoint a b) => some b | x => none
Instances For
Equations
- ctx.getJPParams j = match Lean.RBMap.find? ctx j.idx with | some (Lean.IR.LocalContextEntry.joinPoint ys a) => some ys | x => none
Instances For
Equations
- ctx.isParam idx = match Lean.RBMap.find? ctx idx with | some (Lean.IR.LocalContextEntry.param a) => true | x => false
Instances For
Equations
- ctx.isLocalVar idx = match Lean.RBMap.find? ctx idx with | some (Lean.IR.LocalContextEntry.localVar a a_1) => true | x => false
Instances For
Equations
Instances For
Equations
- ctx.getType x = match Lean.RBMap.find? ctx x.idx with | some (Lean.IR.LocalContextEntry.param t) => some t | some (Lean.IR.LocalContextEntry.localVar t a) => some t | x => none
Instances For
Equations
- ctx.getValue x = match Lean.RBMap.find? ctx x.idx with | some (Lean.IR.LocalContextEntry.localVar a v) => some v | x => none
Instances For
Instances For
Equations
Instances For
Equations
- Lean.IR.instAlphaEqvVarId = { aeqv := Lean.IR.VarId.alphaEqv }
Equations
- Lean.IR.instAlphaEqvArg = { aeqv := Lean.IR.Arg.alphaEqv }
Equations
Instances For
Equations
- Lean.IR.instAlphaEqvArrayArg = { aeqv := Lean.IR.args.alphaEqv }
Equations
- Lean.IR.instAlphaEqvExpr = { aeqv := Lean.IR.Expr.alphaEqv }
Instances For
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Equations
- Lean.IR.instBEqFnBody = { beq := Lean.IR.FnBody.beq }
Equations
- Lean.IR.VarIdSet = Lean.RBTree Lean.IR.VarId fun (x y : Lean.IR.VarId) => compare x.idx y.idx
Instances For
Equations
- Lean.IR.instInhabitedVarIdSet = { default := ∅ }
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lean.IR.getUnboxOpName Lean.IR.IRType.usize = "lean_unbox_usize"
- Lean.IR.getUnboxOpName Lean.IR.IRType.uint32 = "lean_unbox_uint32"
- Lean.IR.getUnboxOpName Lean.IR.IRType.uint64 = "lean_unbox_uint64"
- Lean.IR.getUnboxOpName Lean.IR.IRType.float = "lean_unbox_float"
- Lean.IR.getUnboxOpName Lean.IR.IRType.float32 = "lean_unbox_float32"
- Lean.IR.getUnboxOpName t = "lean_unbox"