mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-11 02:01:36 +03:00
VMCODE: Carry over required type names for named constructors without a tag.
This commit is contained in:
parent
1e780615b6
commit
d161281dea
@ -30,7 +30,7 @@ data VMInst : Type where
|
||||
DECLARE : Reg -> VMInst
|
||||
START : VMInst -- start of the main body of the function
|
||||
ASSIGN : Reg -> Reg -> VMInst
|
||||
MKCON : Reg -> (tag : Maybe Int) -> (args : List Reg) -> VMInst
|
||||
MKCON : Reg -> (tag : Either Int Name) -> (args : List Reg) -> VMInst
|
||||
MKCLOSURE : Reg -> Name -> (missing : Nat) -> (args : List Reg) -> VMInst
|
||||
MKCONSTANT : Reg -> Constant -> VMInst
|
||||
|
||||
@ -117,8 +117,10 @@ toVM t res (AApp fc f a)
|
||||
= [APPLY res (toReg f) (toReg a)]
|
||||
toVM t res (ALet fc var val body)
|
||||
= toVM False (Loc var) val ++ toVM t res body
|
||||
toVM t res (ACon fc n tag args)
|
||||
= [MKCON res tag (map toReg args)]
|
||||
toVM t res (ACon fc n (Just tag) args)
|
||||
= [MKCON res (Left tag) (map toReg args)]
|
||||
toVM t res (ACon fc n Nothing args)
|
||||
= [MKCON res (Right n) (map toReg args)]
|
||||
toVM t res (AOp fc op args)
|
||||
= [OP res op (map toReg args)]
|
||||
toVM t res (AExtPrim fc p args)
|
||||
|
Loading…
Reference in New Issue
Block a user