mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-12-26 06:11:50 +03:00
Merge branch 'master' into add-version-command
This commit is contained in:
commit
295058130e
@ -24,7 +24,9 @@ Chez Scheme is available to build from source:
|
|||||||
|
|
||||||
+ https://cisco.github.io/ChezScheme/
|
+ https://cisco.github.io/ChezScheme/
|
||||||
|
|
||||||
Many popular package managers will provide a binary distribution for Chez.
|
Many popular package managers will provide a binary distribution for Chez. Note
|
||||||
|
that homebrew for Mac OS X provides a version without multithreading support, so
|
||||||
|
Mac OS X users will want to build from source.
|
||||||
|
|
||||||
**Note**: If you install ChezScheme from source files, building it locally, make sure
|
**Note**: If you install ChezScheme from source files, building it locally, make sure
|
||||||
you run `./configure --threads` to build multithreading support in.
|
you run `./configure --threads` to build multithreading support in.
|
||||||
|
2
Makefile
2
Makefile
@ -6,7 +6,7 @@ PATCH=0
|
|||||||
PREFIX ?= ${HOME}/.idris2
|
PREFIX ?= ${HOME}/.idris2
|
||||||
IDRIS_VERSION := $(shell idris --version)
|
IDRIS_VERSION := $(shell idris --version)
|
||||||
VALID_IDRIS_VERSION_REGEXP = "1.3.2.*"
|
VALID_IDRIS_VERSION_REGEXP = "1.3.2.*"
|
||||||
export IDRIS2_PATH = ${CURDIR}/libs/prelude/build:${CURDIR}/libs/base/build
|
export IDRIS2_PATH = ${CURDIR}/libs/prelude/build/ttc:${CURDIR}/libs/base/build/ttc
|
||||||
export IDRIS2_DATA = ${CURDIR}/support
|
export IDRIS2_DATA = ${CURDIR}/support
|
||||||
|
|
||||||
-include custom.mk
|
-include custom.mk
|
||||||
|
@ -40,4 +40,3 @@ Generates a pattern matching definition, if it can find one, for the function
|
|||||||
declared with the given name, on the given line. It will only return the
|
declared with the given name, on the given line. It will only return the
|
||||||
first definition it finds, as a list of pattern clauses. This works via a
|
first definition it finds, as a list of pattern clauses. This works via a
|
||||||
combination of case splitting and expression search.
|
combination of case splitting and expression search.
|
||||||
|
|
||||||
|
@ -4,12 +4,12 @@ import System.File
|
|||||||
|
|
||||||
export
|
export
|
||||||
data Buffer : Type where
|
data Buffer : Type where
|
||||||
MkBuffer : Ptr -> (size : Int) -> (loc : Int) -> Buffer
|
MkBuffer : AnyPtr -> (size : Int) -> (loc : Int) -> Buffer
|
||||||
|
|
||||||
export
|
export
|
||||||
newBuffer : Int -> IO Buffer
|
newBuffer : Int -> IO Buffer
|
||||||
newBuffer size
|
newBuffer size
|
||||||
= do buf <- schemeCall Ptr "blodwen-new-buffer" [size]
|
= do buf <- schemeCall AnyPtr "blodwen-new-buffer" [size]
|
||||||
pure (MkBuffer buf size 0)
|
pure (MkBuffer buf size 0)
|
||||||
|
|
||||||
export
|
export
|
||||||
|
@ -31,7 +31,6 @@ LIBTARGET = $(LIBNAME).a
|
|||||||
TARGET=${HOME}/.idris2
|
TARGET=${HOME}/.idris2
|
||||||
|
|
||||||
build: $(DYLIBTARGET) $(IDRIS_SRCS)
|
build: $(DYLIBTARGET) $(IDRIS_SRCS)
|
||||||
@if ! [ -d build ]; then echo "creating 'build' directory"; mkdir build ; else echo "directory 'build' exists"; fi
|
|
||||||
@if [ -z "${IDRIS2}" ]; then echo 'variable $$IDRIS2 is not set, aborting'; exit 1; fi
|
@if [ -z "${IDRIS2}" ]; then echo 'variable $$IDRIS2 is not set, aborting'; exit 1; fi
|
||||||
${IDRIS2} --build network.ipkg
|
${IDRIS2} --build network.ipkg
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ accept sock = do
|
|||||||
-- We need a pointer to a sockaddr structure. This is then passed into
|
-- We need a pointer to a sockaddr structure. This is then passed into
|
||||||
-- idrnet_accept and populated. We can then query it for the SocketAddr and free it.
|
-- idrnet_accept and populated. We can then query it for the SocketAddr and free it.
|
||||||
|
|
||||||
sockaddr_ptr <- cCall Ptr "idrnet_create_sockaddr" []
|
sockaddr_ptr <- cCall AnyPtr "idrnet_create_sockaddr" []
|
||||||
|
|
||||||
accept_res <- cCall Int "idrnet_accept" [ descriptor sock, sockaddr_ptr ]
|
accept_res <- cCall Int "idrnet_accept" [ descriptor sock, sockaddr_ptr ]
|
||||||
if accept_res == (-1)
|
if accept_res == (-1)
|
||||||
@ -128,7 +128,7 @@ recv : (sock : Socket)
|
|||||||
recv sock len = do
|
recv sock len = do
|
||||||
-- Firstly make the request, get some kind of recv structure which
|
-- Firstly make the request, get some kind of recv structure which
|
||||||
-- contains the result of the recv and possibly the retrieved payload
|
-- contains the result of the recv and possibly the retrieved payload
|
||||||
recv_struct_ptr <- cCall Ptr "idrnet_recv" [ descriptor sock, len]
|
recv_struct_ptr <- cCall AnyPtr "idrnet_recv" [ descriptor sock, len]
|
||||||
recv_res <- cCall Int "idrnet_get_recv_res" [ recv_struct_ptr ]
|
recv_res <- cCall Int "idrnet_get_recv_res" [ recv_struct_ptr ]
|
||||||
|
|
||||||
if recv_res == (-1)
|
if recv_res == (-1)
|
||||||
@ -202,7 +202,7 @@ recvFrom : (sock : Socket)
|
|||||||
-> (len : ByteLength)
|
-> (len : ByteLength)
|
||||||
-> IO (Either SocketError (UDPAddrInfo, String, ResultCode))
|
-> IO (Either SocketError (UDPAddrInfo, String, ResultCode))
|
||||||
recvFrom sock bl = do
|
recvFrom sock bl = do
|
||||||
recv_ptr <- cCall Ptr "idrnet_recvfrom"
|
recv_ptr <- cCall AnyPtr "idrnet_recvfrom"
|
||||||
[ descriptor sock, bl ]
|
[ descriptor sock, bl ]
|
||||||
|
|
||||||
let recv_ptr' = RFPtr recv_ptr
|
let recv_ptr' = RFPtr recv_ptr
|
||||||
|
@ -63,7 +63,7 @@ getErrno : IO SocketError
|
|||||||
getErrno = cCall Int "idrnet_errno" []
|
getErrno = cCall Int "idrnet_errno" []
|
||||||
|
|
||||||
export
|
export
|
||||||
nullPtr : Ptr -> IO Bool
|
nullPtr : AnyPtr -> IO Bool
|
||||||
nullPtr p = cCall Bool "isNull" [p]
|
nullPtr p = cCall Bool "isNull" [p]
|
||||||
|
|
||||||
-- -------------------------------------------------------------- [ Interfaces ]
|
-- -------------------------------------------------------------- [ Interfaces ]
|
||||||
|
@ -10,16 +10,16 @@ import public Network.Socket.Data
|
|||||||
-- ---------------------------------------------------------------- [ Pointers ]
|
-- ---------------------------------------------------------------- [ Pointers ]
|
||||||
|
|
||||||
public export
|
public export
|
||||||
data RecvStructPtr = RSPtr Ptr
|
data RecvStructPtr = RSPtr AnyPtr
|
||||||
|
|
||||||
public export
|
public export
|
||||||
data RecvfromStructPtr = RFPtr Ptr
|
data RecvfromStructPtr = RFPtr AnyPtr
|
||||||
|
|
||||||
public export
|
public export
|
||||||
data BufPtr = BPtr Ptr
|
data BufPtr = BPtr AnyPtr
|
||||||
|
|
||||||
public export
|
public export
|
||||||
data SockaddrPtr = SAPtr Ptr
|
data SockaddrPtr = SAPtr AnyPtr
|
||||||
|
|
||||||
-- ---------------------------------------------------------- [ Socket Utilies ]
|
-- ---------------------------------------------------------- [ Socket Utilies ]
|
||||||
|
|
||||||
@ -35,7 +35,7 @@ sockaddr_free (SAPtr ptr) = cCall () "idrnet_free" [ptr]
|
|||||||
|||
|
|||
|
||||||
||| Used to allocate a mutable pointer to be given to the Recv functions.
|
||| Used to allocate a mutable pointer to be given to the Recv functions.
|
||||||
sock_alloc : ByteLength -> IO BufPtr
|
sock_alloc : ByteLength -> IO BufPtr
|
||||||
sock_alloc bl = map BPtr $ cCall Ptr "idrnet_malloc" [bl]
|
sock_alloc bl = map BPtr $ cCall AnyPtr "idrnet_malloc" [bl]
|
||||||
|
|
||||||
||| Retrieves the port the given socket is bound to
|
||| Retrieves the port the given socket is bound to
|
||||||
export
|
export
|
||||||
@ -141,14 +141,14 @@ foreignGetRecvfromPayload (RFPtr p) = cCall String "idrnet_get_recvfrom_payload"
|
|||||||
export
|
export
|
||||||
foreignGetRecvfromAddr : RecvfromStructPtr -> IO SocketAddress
|
foreignGetRecvfromAddr : RecvfromStructPtr -> IO SocketAddress
|
||||||
foreignGetRecvfromAddr (RFPtr p) = do
|
foreignGetRecvfromAddr (RFPtr p) = do
|
||||||
sockaddr_ptr <- map SAPtr $ cCall Ptr "idrnet_get_recvfrom_sockaddr" [p]
|
sockaddr_ptr <- map SAPtr $ cCall AnyPtr "idrnet_get_recvfrom_sockaddr" [p]
|
||||||
getSockAddr sockaddr_ptr
|
getSockAddr sockaddr_ptr
|
||||||
|
|
||||||
||| Utility function to return sender's IPV4 port.
|
||| Utility function to return sender's IPV4 port.
|
||||||
export
|
export
|
||||||
foreignGetRecvfromPort : RecvfromStructPtr -> IO Port
|
foreignGetRecvfromPort : RecvfromStructPtr -> IO Port
|
||||||
foreignGetRecvfromPort (RFPtr p) = do
|
foreignGetRecvfromPort (RFPtr p) = do
|
||||||
sockaddr_ptr <- cCall Ptr "idrnet_get_recvfrom_sockaddr" [p]
|
sockaddr_ptr <- cCall AnyPtr "idrnet_get_recvfrom_sockaddr" [p]
|
||||||
port <- cCall Int "idrnet_sockaddr_ipv4_port" [sockaddr_ptr]
|
port <- cCall Int "idrnet_sockaddr_ipv4_port" [sockaddr_ptr]
|
||||||
pure port
|
pure port
|
||||||
|
|
||||||
@ -169,7 +169,7 @@ recvFromBuf : (sock : Socket)
|
|||||||
-> (len : ByteLength)
|
-> (len : ByteLength)
|
||||||
-> IO (Either SocketError (UDPAddrInfo, ResultCode))
|
-> IO (Either SocketError (UDPAddrInfo, ResultCode))
|
||||||
recvFromBuf sock (BPtr ptr) bl = do
|
recvFromBuf sock (BPtr ptr) bl = do
|
||||||
recv_ptr <- cCall Ptr "idrnet_recvfrom_buf" [ descriptor sock, ptr, bl]
|
recv_ptr <- cCall AnyPtr "idrnet_recvfrom_buf" [ descriptor sock, ptr, bl]
|
||||||
|
|
||||||
let recv_ptr' = RFPtr recv_ptr
|
let recv_ptr' = RFPtr recv_ptr
|
||||||
|
|
||||||
|
@ -21,11 +21,22 @@ io_bind (MkIO fn)
|
|||||||
MkIO res = k x' in
|
MkIO res = k x' in
|
||||||
res w')
|
res w')
|
||||||
|
|
||||||
|
public export
|
||||||
|
PrimIO : Type -> Type
|
||||||
|
PrimIO a = (1 x : %World) -> IORes a
|
||||||
|
|
||||||
%extern prim__putStr : String -> (1 x : %World) -> IORes ()
|
%extern prim__putStr : String -> (1 x : %World) -> IORes ()
|
||||||
%extern prim__getStr : (1 x : %World) -> IORes String
|
%extern prim__getStr : (1 x : %World) -> IORes String
|
||||||
|
|
||||||
|
-- A pointer representing a given parameter type
|
||||||
|
-- The parameter is a phantom type, to help differentiate between
|
||||||
|
-- different pointer types
|
||||||
public export
|
public export
|
||||||
data Ptr : Type where
|
data Ptr : Type -> Type where
|
||||||
|
|
||||||
|
-- A pointer to any type (representing a void* in foreign calls)
|
||||||
|
public export
|
||||||
|
data AnyPtr : Type where
|
||||||
|
|
||||||
public export
|
public export
|
||||||
data ThreadID : Type where
|
data ThreadID : Type where
|
||||||
|
@ -8,6 +8,8 @@ import Core.TT
|
|||||||
|
|
||||||
import Data.NameMap
|
import Data.NameMap
|
||||||
|
|
||||||
|
import System.Info
|
||||||
|
|
||||||
%include C "sys/stat.h"
|
%include C "sys/stat.h"
|
||||||
|
|
||||||
||| Generic interface to some code generator
|
||| Generic interface to some code generator
|
||||||
@ -120,3 +122,34 @@ tmpName = foreign FFI_C "tmpnam" (Ptr -> IO String) null
|
|||||||
export
|
export
|
||||||
chmod : String -> Int -> IO ()
|
chmod : String -> Int -> IO ()
|
||||||
chmod f m = foreign FFI_C "chmod" (String -> Int -> IO ()) f m
|
chmod f m = foreign FFI_C "chmod" (String -> Int -> IO ()) f m
|
||||||
|
|
||||||
|
-- Parse a calling convention into a backend/target for the call, and
|
||||||
|
-- a comma separated list of any other location data.
|
||||||
|
-- e.g. "scheme:display" - call the scheme function 'display'
|
||||||
|
-- "C:puts,libc,stdio.h" - call the C function 'puts' which is in
|
||||||
|
-- the library libc and the header stdio.h
|
||||||
|
-- Returns Nothing if the string is empty (which a backend can interpret
|
||||||
|
-- however it likes)
|
||||||
|
export
|
||||||
|
parseCC : String -> Maybe (String, List String)
|
||||||
|
parseCC "" = Nothing
|
||||||
|
parseCC str
|
||||||
|
= case span (/= ':') str of
|
||||||
|
(target, "") => Just (trim target, [])
|
||||||
|
(target, opts) => Just (trim target,
|
||||||
|
map trim (getOpts
|
||||||
|
(assert_total (strTail opts))))
|
||||||
|
where
|
||||||
|
getOpts : String -> List String
|
||||||
|
getOpts "" = []
|
||||||
|
getOpts str
|
||||||
|
= case span (/= ',') str of
|
||||||
|
(opt, "") => [opt]
|
||||||
|
(opt, rest) => opt :: getOpts (assert_total (strTail rest))
|
||||||
|
|
||||||
|
export
|
||||||
|
dylib_suffix : String
|
||||||
|
dylib_suffix
|
||||||
|
= cond [(os `elem` ["windows", "mingw32", "cygwin32"], "dll"),
|
||||||
|
(os == "darwin", "dylib")]
|
||||||
|
"so"
|
||||||
|
@ -5,7 +5,9 @@ import public Core.CompileExpr
|
|||||||
import Core.Context
|
import Core.Context
|
||||||
import Core.Env
|
import Core.Env
|
||||||
import Core.Name
|
import Core.Name
|
||||||
|
import Core.Normalise
|
||||||
import Core.TT
|
import Core.TT
|
||||||
|
import Core.Value
|
||||||
|
|
||||||
import Data.NameMap
|
import Data.NameMap
|
||||||
import Data.Vect
|
import Data.Vect
|
||||||
@ -27,6 +29,7 @@ numArgs defs (Ref _ _ n)
|
|||||||
= case !(lookupDefExact n (gamma defs)) of
|
= case !(lookupDefExact n (gamma defs)) of
|
||||||
Just (PMDef _ args _ _ _) => pure (length args)
|
Just (PMDef _ args _ _ _) => pure (length args)
|
||||||
Just (ExternDef arity) => pure arity
|
Just (ExternDef arity) => pure arity
|
||||||
|
Just (ForeignDef arity _) => pure arity
|
||||||
Just (Builtin {arity} f) => pure arity
|
Just (Builtin {arity} f) => pure arity
|
||||||
_ => pure 0
|
_ => pure 0
|
||||||
numArgs _ tm = pure 0
|
numArgs _ tm = pure 0
|
||||||
@ -47,7 +50,7 @@ etaExpand i Z exp args = mkApp exp (map (mkLocal (getFC exp)) (reverse args))
|
|||||||
mkApp (CExtPrim fc p args) args' = CExtPrim fc p (args ++ args')
|
mkApp (CExtPrim fc p args) args' = CExtPrim fc p (args ++ args')
|
||||||
mkApp tm args = CApp (getFC tm) tm args
|
mkApp tm args = CApp (getFC tm) tm args
|
||||||
etaExpand i (S k) exp args
|
etaExpand i (S k) exp args
|
||||||
= CLam (getFC exp) (MN "x" i)
|
= CLam (getFC exp) (MN "x" i)
|
||||||
(etaExpand (i + 1) k (weaken exp)
|
(etaExpand (i + 1) k (weaken exp)
|
||||||
(MkVar First :: map weakenVar args))
|
(MkVar First :: map weakenVar args))
|
||||||
|
|
||||||
@ -55,12 +58,12 @@ expandToArity : Nat -> CExp vars -> List (CExp vars) -> CExp vars
|
|||||||
-- No point in applying to anything
|
-- No point in applying to anything
|
||||||
expandToArity _ (CErased fc) _ = CErased fc
|
expandToArity _ (CErased fc) _ = CErased fc
|
||||||
-- Overapplied; apply everything as single arguments
|
-- Overapplied; apply everything as single arguments
|
||||||
expandToArity Z fn args = applyAll fn args
|
expandToArity Z f args = applyAll f args
|
||||||
where
|
where
|
||||||
applyAll : CExp vars -> List (CExp vars) -> CExp vars
|
applyAll : CExp vars -> List (CExp vars) -> CExp vars
|
||||||
applyAll fn [] = fn
|
applyAll fn [] = fn
|
||||||
applyAll fn (a :: args) = applyAll (CApp (getFC fn) fn [a]) args
|
applyAll fn (a :: args) = applyAll (CApp (getFC fn) fn [a]) args
|
||||||
expandToArity (S k) fn (a :: args) = expandToArity k (addArg fn a) args
|
expandToArity (S k) f (a :: args) = expandToArity k (addArg f a) args
|
||||||
where
|
where
|
||||||
addArg : CExp vars -> CExp vars -> CExp vars
|
addArg : CExp vars -> CExp vars -> CExp vars
|
||||||
addArg (CApp fc fn args) a = CApp fc fn (args ++ [a])
|
addArg (CApp fc fn args) a = CApp fc fn (args ++ [a])
|
||||||
@ -103,7 +106,7 @@ natBranch (MkConAlt n _ _ _) = isNatCon n
|
|||||||
trySBranch : CExp vars -> CConAlt vars -> Maybe (CExp vars)
|
trySBranch : CExp vars -> CConAlt vars -> Maybe (CExp vars)
|
||||||
trySBranch n (MkConAlt (NS ["Prelude"] (UN "S")) _ [arg] sc)
|
trySBranch n (MkConAlt (NS ["Prelude"] (UN "S")) _ [arg] sc)
|
||||||
= let fc = getFC n in
|
= let fc = getFC n in
|
||||||
Just (CLet fc arg (CApp fc (CRef fc (UN "prim__sub_Integer"))
|
Just (CLet fc arg (CApp fc (CRef fc (UN "prim__sub_Integer"))
|
||||||
[n, CPrimVal fc (BI 1)]) sc)
|
[n, CPrimVal fc (BI 1)]) sc)
|
||||||
trySBranch _ _ = Nothing
|
trySBranch _ _ = Nothing
|
||||||
|
|
||||||
@ -133,9 +136,9 @@ natHackTree t = t
|
|||||||
mutual
|
mutual
|
||||||
toCExpTm : {auto c : Ref Ctxt Defs} ->
|
toCExpTm : {auto c : Ref Ctxt Defs} ->
|
||||||
NameTags -> Name -> Term vars -> Core (CExp vars)
|
NameTags -> Name -> Term vars -> Core (CExp vars)
|
||||||
toCExpTm tags n (Local fc _ _ prf)
|
toCExpTm tags n (Local fc _ _ prf)
|
||||||
= pure $ CLocal fc prf
|
= pure $ CLocal fc prf
|
||||||
toCExpTm tags n (Ref fc (DataCon tag arity) fn)
|
toCExpTm tags n (Ref fc (DataCon tag arity) fn)
|
||||||
= let tag' = case lookup fn tags of
|
= let tag' = case lookup fn tags of
|
||||||
Just t => t
|
Just t => t
|
||||||
_ => tag in
|
_ => tag in
|
||||||
@ -146,9 +149,9 @@ mutual
|
|||||||
Just t => t
|
Just t => t
|
||||||
_ => tag in
|
_ => tag in
|
||||||
pure $ CCon fc fn tag' []
|
pure $ CCon fc fn tag' []
|
||||||
toCExpTm tags n (Ref fc _ fn)
|
toCExpTm tags n (Ref fc _ fn)
|
||||||
= do full <- getFullName fn
|
= do full <- getFullName fn
|
||||||
-- ^ For readability of output code, and the Nat hack,
|
-- ^ For readability of output code, and the Nat hack,
|
||||||
pure $ CApp fc (CRef fc full) []
|
pure $ CApp fc (CRef fc full) []
|
||||||
toCExpTm tags n (Meta fc mn i args)
|
toCExpTm tags n (Meta fc mn i args)
|
||||||
= pure $ CApp fc (CRef fc mn) !(traverse (toCExp tags n) args)
|
= pure $ CApp fc (CRef fc mn) !(traverse (toCExp tags n) args)
|
||||||
@ -158,12 +161,12 @@ mutual
|
|||||||
= pure $ CLet fc x (CErased fc) !(toCExp tags n sc)
|
= pure $ CLet fc x (CErased fc) !(toCExp tags n sc)
|
||||||
toCExpTm tags n (Bind fc x (Let _ val _) sc)
|
toCExpTm tags n (Bind fc x (Let _ val _) sc)
|
||||||
= pure $ CLet fc x !(toCExp tags n val) !(toCExp tags n sc)
|
= pure $ CLet fc x !(toCExp tags n val) !(toCExp tags n sc)
|
||||||
toCExpTm tags n (Bind fc x (Pi c e ty) sc)
|
toCExpTm tags n (Bind fc x (Pi c e ty) sc)
|
||||||
= pure $ CCon fc (UN "->") 1 [!(toCExp tags n ty),
|
= pure $ CCon fc (UN "->") 1 [!(toCExp tags n ty),
|
||||||
CLam fc x !(toCExp tags n sc)]
|
CLam fc x !(toCExp tags n sc)]
|
||||||
toCExpTm tags n (Bind fc x b tm) = pure $ CErased fc
|
toCExpTm tags n (Bind fc x b tm) = pure $ CErased fc
|
||||||
-- We'd expect this to have been dealt with in toCExp, but for completeness...
|
-- We'd expect this to have been dealt with in toCExp, but for completeness...
|
||||||
toCExpTm tags n (App fc tm arg)
|
toCExpTm tags n (App fc tm arg)
|
||||||
= pure $ CApp fc !(toCExp tags n tm) [!(toCExp tags n arg)]
|
= pure $ CApp fc !(toCExp tags n tm) [!(toCExp tags n arg)]
|
||||||
-- This shouldn't be in terms any more, but here for completeness
|
-- This shouldn't be in terms any more, but here for completeness
|
||||||
toCExpTm tags n (As _ _ p) = toCExpTm tags n p
|
toCExpTm tags n (As _ _ p) = toCExpTm tags n p
|
||||||
@ -173,7 +176,7 @@ mutual
|
|||||||
= pure (CDelay fc !(toCExp tags n arg))
|
= pure (CDelay fc !(toCExp tags n arg))
|
||||||
toCExpTm tags n (TForce fc arg)
|
toCExpTm tags n (TForce fc arg)
|
||||||
= pure (CForce fc !(toCExp tags n arg))
|
= pure (CForce fc !(toCExp tags n arg))
|
||||||
toCExpTm tags n (PrimVal fc c)
|
toCExpTm tags n (PrimVal fc c)
|
||||||
= let t = constTag c in
|
= let t = constTag c in
|
||||||
if t == 0
|
if t == 0
|
||||||
then pure $ CPrimVal fc c
|
then pure $ CPrimVal fc c
|
||||||
@ -194,7 +197,7 @@ mutual
|
|||||||
|
|
||||||
mutual
|
mutual
|
||||||
conCases : {auto c : Ref Ctxt Defs} ->
|
conCases : {auto c : Ref Ctxt Defs} ->
|
||||||
NameTags -> Name -> List (CaseAlt vars) ->
|
NameTags -> Name -> List (CaseAlt vars) ->
|
||||||
Core (List (CConAlt vars))
|
Core (List (CConAlt vars))
|
||||||
conCases tags n [] = pure []
|
conCases tags n [] = pure []
|
||||||
conCases tags n (ConCase x tag args sc :: ns)
|
conCases tags n (ConCase x tag args sc :: ns)
|
||||||
@ -202,60 +205,60 @@ mutual
|
|||||||
Just t => t
|
Just t => t
|
||||||
_ => tag
|
_ => tag
|
||||||
xn <- getFullName x
|
xn <- getFullName x
|
||||||
pure $ MkConAlt xn tag' args !(toCExpTree tags n sc)
|
pure $ MkConAlt xn tag' args !(toCExpTree tags n sc)
|
||||||
:: !(conCases tags n ns)
|
:: !(conCases tags n ns)
|
||||||
conCases tags n (_ :: ns) = conCases tags n ns
|
conCases tags n (_ :: ns) = conCases tags n ns
|
||||||
|
|
||||||
constCases : {auto c : Ref Ctxt Defs} ->
|
constCases : {auto c : Ref Ctxt Defs} ->
|
||||||
NameTags -> Name -> List (CaseAlt vars) ->
|
NameTags -> Name -> List (CaseAlt vars) ->
|
||||||
Core (List (CConstAlt vars))
|
Core (List (CConstAlt vars))
|
||||||
constCases tags n [] = pure []
|
constCases tags n [] = pure []
|
||||||
constCases tags n (ConstCase x sc :: ns)
|
constCases tags n (ConstCase x sc :: ns)
|
||||||
= pure $ MkConstAlt x !(toCExpTree tags n sc) ::
|
= pure $ MkConstAlt x !(toCExpTree tags n sc) ::
|
||||||
!(constCases tags n ns)
|
!(constCases tags n ns)
|
||||||
constCases tags n (_ :: ns) = constCases tags n ns
|
constCases tags n (_ :: ns) = constCases tags n ns
|
||||||
|
|
||||||
getDef : {auto c : Ref Ctxt Defs} ->
|
getDef : {auto c : Ref Ctxt Defs} ->
|
||||||
NameTags -> Name -> List (CaseAlt vars) ->
|
NameTags -> Name -> List (CaseAlt vars) ->
|
||||||
Core (Maybe (CExp vars))
|
Core (Maybe (CExp vars))
|
||||||
getDef tags n [] = pure Nothing
|
getDef tags n [] = pure Nothing
|
||||||
getDef tags n (DefaultCase sc :: ns)
|
getDef tags n (DefaultCase sc :: ns)
|
||||||
= pure $ Just !(toCExpTree tags n sc)
|
= pure $ Just !(toCExpTree tags n sc)
|
||||||
getDef tags n (_ :: ns) = getDef tags n ns
|
getDef tags n (_ :: ns) = getDef tags n ns
|
||||||
|
|
||||||
toCExpTree : {auto c : Ref Ctxt Defs} ->
|
toCExpTree : {auto c : Ref Ctxt Defs} ->
|
||||||
NameTags -> Name -> CaseTree vars ->
|
NameTags -> Name -> CaseTree vars ->
|
||||||
Core (CExp vars)
|
Core (CExp vars)
|
||||||
toCExpTree tags n alts@(Case _ x scTy (DelayCase ty arg sc :: rest))
|
toCExpTree tags n alts@(Case _ x scTy (DelayCase ty arg sc :: rest))
|
||||||
= let fc = getLoc scTy in
|
= let fc = getLoc scTy in
|
||||||
pure $
|
pure $
|
||||||
CLet fc arg (CForce fc (CLocal (getLoc scTy) x)) $
|
CLet fc arg (CForce fc (CLocal (getLoc scTy) x)) $
|
||||||
CLet fc ty (CErased fc)
|
CLet fc ty (CErased fc)
|
||||||
!(toCExpTree tags n sc)
|
!(toCExpTree tags n sc)
|
||||||
toCExpTree tags n alts = toCExpTree' tags n alts
|
toCExpTree tags n alts = toCExpTree' tags n alts
|
||||||
|
|
||||||
toCExpTree' : {auto c : Ref Ctxt Defs} ->
|
toCExpTree' : {auto c : Ref Ctxt Defs} ->
|
||||||
NameTags -> Name -> CaseTree vars ->
|
NameTags -> Name -> CaseTree vars ->
|
||||||
Core (CExp vars)
|
Core (CExp vars)
|
||||||
toCExpTree' tags n (Case _ x scTy alts@(ConCase _ _ _ _ :: _))
|
toCExpTree' tags n (Case _ x scTy alts@(ConCase _ _ _ _ :: _))
|
||||||
= let fc = getLoc scTy in
|
= let fc = getLoc scTy in
|
||||||
pure $ natHackTree
|
pure $ natHackTree
|
||||||
(CConCase fc (CLocal fc x) !(conCases tags n alts)
|
(CConCase fc (CLocal fc x) !(conCases tags n alts)
|
||||||
!(getDef tags n alts))
|
!(getDef tags n alts))
|
||||||
toCExpTree' tags n (Case _ x scTy alts@(DelayCase _ _ _ :: _))
|
toCExpTree' tags n (Case _ x scTy alts@(DelayCase _ _ _ :: _))
|
||||||
= throw (InternalError "Unexpected DelayCase")
|
= throw (InternalError "Unexpected DelayCase")
|
||||||
toCExpTree' tags n (Case _ x scTy alts@(ConstCase _ _ :: _))
|
toCExpTree' tags n (Case _ x scTy alts@(ConstCase _ _ :: _))
|
||||||
= let fc = getLoc scTy in
|
= let fc = getLoc scTy in
|
||||||
pure $ CConstCase fc (CLocal fc x)
|
pure $ CConstCase fc (CLocal fc x)
|
||||||
!(constCases tags n alts) !(getDef tags n alts)
|
!(constCases tags n alts) !(getDef tags n alts)
|
||||||
toCExpTree' tags n (Case _ x scTy alts@(DefaultCase sc :: _))
|
toCExpTree' tags n (Case _ x scTy alts@(DefaultCase sc :: _))
|
||||||
= toCExpTree tags n sc
|
= toCExpTree tags n sc
|
||||||
toCExpTree' tags n (Case _ x scTy [])
|
toCExpTree' tags n (Case _ x scTy [])
|
||||||
= pure $ CCrash (getLoc scTy) $ "Missing case tree in " ++ show n
|
= pure $ CCrash (getLoc scTy) $ "Missing case tree in " ++ show n
|
||||||
toCExpTree' tags n (STerm tm) = toCExp tags n tm
|
toCExpTree' tags n (STerm tm) = toCExp tags n tm
|
||||||
toCExpTree' tags n (Unmatched msg)
|
toCExpTree' tags n (Unmatched msg)
|
||||||
= pure $ CCrash emptyFC msg
|
= pure $ CCrash emptyFC msg
|
||||||
toCExpTree' tags n Impossible
|
toCExpTree' tags n Impossible
|
||||||
= pure $ CCrash emptyFC ("Impossible case encountered in " ++ show n)
|
= pure $ CCrash emptyFC ("Impossible case encountered in " ++ show n)
|
||||||
|
|
||||||
-- Need this for ensuring that argument list matches up to operator arity for
|
-- Need this for ensuring that argument list matches up to operator arity for
|
||||||
@ -270,14 +273,60 @@ mkArgList i (S k)
|
|||||||
= let (_ ** rec) = mkArgList (i + 1) k in
|
= let (_ ** rec) = mkArgList (i + 1) k in
|
||||||
(_ ** ConsArg (MN "arg" i) rec)
|
(_ ** ConsArg (MN "arg" i) rec)
|
||||||
|
|
||||||
toCDef : {auto c : Ref Ctxt Defs} ->
|
data NArgs : Type where
|
||||||
NameTags -> Name -> Def ->
|
User : Name -> List (Closure []) -> NArgs
|
||||||
|
NUnit : NArgs
|
||||||
|
NPtr : NArgs
|
||||||
|
NIORes : Closure [] -> NArgs
|
||||||
|
|
||||||
|
getNArgs : Name -> List (Closure []) -> NArgs
|
||||||
|
getNArgs (NS _ (UN "IORes")) [arg] = NIORes arg
|
||||||
|
getNArgs (NS _ (UN "Ptr")) [arg] = NPtr
|
||||||
|
getNArgs (NS _ (UN "AnyPtr")) [] = NPtr
|
||||||
|
getNArgs (NS _ (UN "Unit")) [] = NUnit
|
||||||
|
getNArgs n args = User n args
|
||||||
|
|
||||||
|
nfToCFType : {auto c : Ref Ctxt Defs} ->
|
||||||
|
NF [] -> Core CFType
|
||||||
|
nfToCFType (NPrimVal _ IntType) = pure CFInt
|
||||||
|
nfToCFType (NPrimVal _ StringType) = pure CFString
|
||||||
|
nfToCFType (NPrimVal _ DoubleType) = pure CFDouble
|
||||||
|
nfToCFType (NPrimVal _ CharType) = pure CFChar
|
||||||
|
nfToCFType (NPrimVal _ WorldType) = pure CFWorld
|
||||||
|
nfToCFType (NTCon _ n _ _ args)
|
||||||
|
= do defs <- get Ctxt
|
||||||
|
case getNArgs !(toFullNames n) args of
|
||||||
|
User un uargs =>
|
||||||
|
do nargs <- traverse (evalClosure defs) uargs
|
||||||
|
cargs <- traverse nfToCFType nargs
|
||||||
|
pure (CFUser n cargs)
|
||||||
|
NUnit => pure CFUnit
|
||||||
|
NPtr => pure CFPtr
|
||||||
|
NIORes uarg =>
|
||||||
|
do narg <- evalClosure defs uarg
|
||||||
|
carg <- nfToCFType narg
|
||||||
|
pure (CFIORes carg)
|
||||||
|
nfToCFType _ = pure CFUnit
|
||||||
|
|
||||||
|
getCFTypes : {auto c : Ref Ctxt Defs} ->
|
||||||
|
List CFType -> NF [] ->
|
||||||
|
Core (List CFType, CFType)
|
||||||
|
getCFTypes args (NBind fc _ (Pi _ _ ty) sc)
|
||||||
|
= do aty <- nfToCFType ty
|
||||||
|
defs <- get Ctxt
|
||||||
|
sc' <- sc defs (toClosure defaultOpts [] (Erased fc))
|
||||||
|
getCFTypes (aty :: args) sc'
|
||||||
|
getCFTypes args t
|
||||||
|
= pure (reverse args, !(nfToCFType t))
|
||||||
|
|
||||||
|
toCDef : {auto c : Ref Ctxt Defs} ->
|
||||||
|
NameTags -> Name -> ClosedTerm -> Def ->
|
||||||
Core CDef
|
Core CDef
|
||||||
toCDef tags n None
|
toCDef tags n ty None
|
||||||
= pure $ MkError $ CCrash emptyFC ("Encountered undefined name " ++ show !(getFullName n))
|
= pure $ MkError $ CCrash emptyFC ("Encountered undefined name " ++ show !(getFullName n))
|
||||||
toCDef tags n (PMDef _ args _ tree _)
|
toCDef tags n ty (PMDef _ args _ tree _)
|
||||||
= pure $ MkFun _ !(toCExpTree tags n tree)
|
= pure $ MkFun _ !(toCExpTree tags n tree)
|
||||||
toCDef tags n (ExternDef arity)
|
toCDef tags n ty (ExternDef arity)
|
||||||
= let (ns ** args) = mkArgList 0 arity in
|
= let (ns ** args) = mkArgList 0 arity in
|
||||||
pure $ MkFun _ (CExtPrim emptyFC !(getFullName n) (map toArgExp (getVars args)))
|
pure $ MkFun _ (CExtPrim emptyFC !(getFullName n) (map toArgExp (getVars args)))
|
||||||
where
|
where
|
||||||
@ -287,7 +336,11 @@ toCDef tags n (ExternDef arity)
|
|||||||
getVars : ArgList k ns -> List (Var ns)
|
getVars : ArgList k ns -> List (Var ns)
|
||||||
getVars NoArgs = []
|
getVars NoArgs = []
|
||||||
getVars (ConsArg a rest) = MkVar First :: map weakenVar (getVars rest)
|
getVars (ConsArg a rest) = MkVar First :: map weakenVar (getVars rest)
|
||||||
toCDef tags n (Builtin {arity} op)
|
toCDef tags n ty (ForeignDef arity cs)
|
||||||
|
= do defs <- get Ctxt
|
||||||
|
(atys, retty) <- getCFTypes [] !(nf defs [] ty)
|
||||||
|
pure $ MkForeign cs atys retty
|
||||||
|
toCDef tags n ty (Builtin {arity} op)
|
||||||
= let (ns ** args) = mkArgList 0 arity in
|
= let (ns ** args) = mkArgList 0 arity in
|
||||||
pure $ MkFun _ (COp emptyFC op (map toArgExp (getVars args)))
|
pure $ MkFun _ (COp emptyFC op (map toArgExp (getVars args)))
|
||||||
where
|
where
|
||||||
@ -297,31 +350,27 @@ toCDef tags n (Builtin {arity} op)
|
|||||||
getVars : ArgList k ns -> Vect k (Var ns)
|
getVars : ArgList k ns -> Vect k (Var ns)
|
||||||
getVars NoArgs = []
|
getVars NoArgs = []
|
||||||
getVars (ConsArg a rest) = MkVar First :: map weakenVar (getVars rest)
|
getVars (ConsArg a rest) = MkVar First :: map weakenVar (getVars rest)
|
||||||
toCDef tags n (DCon tag arity)
|
toCDef tags n _ (DCon tag arity)
|
||||||
= case lookup n tags of
|
= pure $ MkCon (fromMaybe tag $ lookup n tags) arity
|
||||||
Just t => pure $ MkCon t arity
|
toCDef tags n _ (TCon tag arity _ _ _ _)
|
||||||
_ => pure $ MkCon tag arity
|
= pure $ MkCon (fromMaybe tag $ lookup n tags) arity
|
||||||
toCDef tags n (TCon tag arity _ _ _ _)
|
|
||||||
= case lookup n tags of
|
|
||||||
Just t => pure $ MkCon t arity
|
|
||||||
_ => pure $ MkCon tag arity
|
|
||||||
-- We do want to be able to compile these, but also report an error at run time
|
-- We do want to be able to compile these, but also report an error at run time
|
||||||
-- (and, TODO: warn at compile time)
|
-- (and, TODO: warn at compile time)
|
||||||
toCDef tags n (Hole _ _)
|
toCDef tags n ty (Hole _ _)
|
||||||
= pure $ MkError $ CCrash emptyFC ("Encountered unimplemented hole " ++
|
= pure $ MkError $ CCrash emptyFC ("Encountered unimplemented hole " ++
|
||||||
show !(getFullName n))
|
show !(getFullName n))
|
||||||
toCDef tags n (Guess _ _)
|
toCDef tags n ty (Guess _ _)
|
||||||
= pure $ MkError $ CCrash emptyFC ("Encountered constrained hole " ++
|
= pure $ MkError $ CCrash emptyFC ("Encountered constrained hole " ++
|
||||||
show !(getFullName n))
|
show !(getFullName n))
|
||||||
toCDef tags n (BySearch _ _ _)
|
toCDef tags n ty (BySearch _ _ _)
|
||||||
= pure $ MkError $ CCrash emptyFC ("Encountered incomplete proof search " ++
|
= pure $ MkError $ CCrash emptyFC ("Encountered incomplete proof search " ++
|
||||||
show !(getFullName n))
|
show !(getFullName n))
|
||||||
toCDef tags n def
|
toCDef tags n ty def
|
||||||
= pure $ MkError $ CCrash emptyFC ("Encountered uncompilable name " ++
|
= pure $ MkError $ CCrash emptyFC ("Encountered uncompilable name " ++
|
||||||
show (!(getFullName n), def))
|
show (!(getFullName n), def))
|
||||||
|
|
||||||
export
|
export
|
||||||
compileExp : {auto c : Ref Ctxt Defs} ->
|
compileExp : {auto c : Ref Ctxt Defs} ->
|
||||||
NameTags -> ClosedTerm -> Core (CExp [])
|
NameTags -> ClosedTerm -> Core (CExp [])
|
||||||
compileExp tags tm
|
compileExp tags tm
|
||||||
= toCExp tags (UN "main") tm
|
= toCExp tags (UN "main") tm
|
||||||
@ -333,5 +382,6 @@ compileDef tags n
|
|||||||
= do defs <- get Ctxt
|
= do defs <- get Ctxt
|
||||||
Just gdef <- lookupCtxtExact n (gamma defs)
|
Just gdef <- lookupCtxtExact n (gamma defs)
|
||||||
| Nothing => throw (InternalError ("Trying to compile unknown name " ++ show n))
|
| Nothing => throw (InternalError ("Trying to compile unknown name " ++ show n))
|
||||||
ce <- toCDef tags n !(toFullNames (definition gdef))
|
ce <- toCDef tags n (type gdef)
|
||||||
|
!(toFullNames (definition gdef))
|
||||||
setCompiled n ce
|
setCompiled n ce
|
||||||
|
@ -58,6 +58,7 @@ unloadApp n args e = unload (drop n args) (CApp (getFC e) e (take n args))
|
|||||||
getArity : CDef -> Nat
|
getArity : CDef -> Nat
|
||||||
getArity (MkFun args _) = length args
|
getArity (MkFun args _) = length args
|
||||||
getArity (MkCon _ arity) = arity
|
getArity (MkCon _ arity) = arity
|
||||||
|
getArity (MkForeign _ args _) = length args
|
||||||
getArity (MkError _) = 0
|
getArity (MkError _) = 0
|
||||||
|
|
||||||
takeFromStack : EEnv free vars -> Stack free -> (args : List Name) ->
|
takeFromStack : EEnv free vars -> Stack free -> (args : List Name) ->
|
||||||
|
@ -18,10 +18,6 @@ import System.Info
|
|||||||
|
|
||||||
%default covering
|
%default covering
|
||||||
|
|
||||||
firstExists : List String -> IO (Maybe String)
|
|
||||||
firstExists [] = pure Nothing
|
|
||||||
firstExists (x :: xs) = if !(exists x) then pure (Just x) else firstExists xs
|
|
||||||
|
|
||||||
findChez : IO String
|
findChez : IO String
|
||||||
findChez
|
findChez
|
||||||
= do env <- getEnv "CHEZ"
|
= do env <- getEnv "CHEZ"
|
||||||
@ -29,7 +25,33 @@ findChez
|
|||||||
Just n => pure n
|
Just n => pure n
|
||||||
Nothing => do e <- firstExists [p ++ x | p <- ["/usr/bin/", "/usr/local/bin/"],
|
Nothing => do e <- firstExists [p ++ x | p <- ["/usr/bin/", "/usr/local/bin/"],
|
||||||
x <- ["scheme", "chez", "chezscheme9.5"]]
|
x <- ["scheme", "chez", "chezscheme9.5"]]
|
||||||
maybe (pure "/usr/bin/env scheme") pure e
|
pure $ fromMaybe "/usr/bin/env -S scheme" e
|
||||||
|
|
||||||
|
locate : {auto c : Ref Ctxt Defs} ->
|
||||||
|
String -> Core (String, String)
|
||||||
|
locate libspec
|
||||||
|
= do -- Attempt to turn libspec into an appropriate filename for the system
|
||||||
|
let fname
|
||||||
|
= case words libspec of
|
||||||
|
[] => ""
|
||||||
|
[fn] => if '.' `elem` unpack fn
|
||||||
|
then fn -- full filename given
|
||||||
|
else -- add system extension
|
||||||
|
fn ++ "." ++ dylib_suffix
|
||||||
|
(fn :: ver :: _) =>
|
||||||
|
-- library and version given, build path name as
|
||||||
|
-- appropriate for the system
|
||||||
|
cond [(dylib_suffix == "dll",
|
||||||
|
fn ++ "-" ++ ver ++ ".dll"),
|
||||||
|
(dylib_suffix == "dylib",
|
||||||
|
fn ++ "." ++ ver ++ ".dylib")]
|
||||||
|
(fn ++ "." ++ dylib_suffix ++ "." ++ ver)
|
||||||
|
|
||||||
|
fullname <- catch (findLibraryFile fname)
|
||||||
|
(\err => -- assume a system library so not
|
||||||
|
-- in our library path
|
||||||
|
pure fname)
|
||||||
|
pure (fname, fullname)
|
||||||
|
|
||||||
-- Given the chez compiler directives, return a list of pairs of:
|
-- Given the chez compiler directives, return a list of pairs of:
|
||||||
-- - the library file name
|
-- - the library file name
|
||||||
@ -43,14 +65,6 @@ findLibs ds
|
|||||||
= do let libs = mapMaybe (isLib . trim) ds
|
= do let libs = mapMaybe (isLib . trim) ds
|
||||||
traverse locate (nub libs)
|
traverse locate (nub libs)
|
||||||
where
|
where
|
||||||
locate : String -> Core (String, String)
|
|
||||||
locate fname
|
|
||||||
= do fullname <- catch (findLibraryFile fname)
|
|
||||||
(\err => -- assume a system library so not
|
|
||||||
-- in our library path
|
|
||||||
pure fname)
|
|
||||||
pure (fname, fullname)
|
|
||||||
|
|
||||||
isLib : String -> Maybe String
|
isLib : String -> Maybe String
|
||||||
isLib d
|
isLib d
|
||||||
= if isPrefixOf "lib" d
|
= if isPrefixOf "lib" d
|
||||||
@ -87,9 +101,12 @@ mutual
|
|||||||
tySpec (CCon fc (UN "String") _ []) = pure "string"
|
tySpec (CCon fc (UN "String") _ []) = pure "string"
|
||||||
tySpec (CCon fc (UN "Double") _ []) = pure "double"
|
tySpec (CCon fc (UN "Double") _ []) = pure "double"
|
||||||
tySpec (CCon fc (UN "Char") _ []) = pure "char"
|
tySpec (CCon fc (UN "Char") _ []) = pure "char"
|
||||||
|
tySpec (CCon fc (NS _ n) _ [_])
|
||||||
|
= cond [(n == UN "Ptr", pure "void*")]
|
||||||
|
(throw (GenericMsg fc ("Can't pass argument of type " ++ show n ++ " to foreign function")))
|
||||||
tySpec (CCon fc (NS _ n) _ [])
|
tySpec (CCon fc (NS _ n) _ [])
|
||||||
= cond [(n == UN "Unit", pure "void"),
|
= cond [(n == UN "Unit", pure "void"),
|
||||||
(n == UN "Ptr", pure "void*")]
|
(n == UN "AnyPtr", pure "void*")]
|
||||||
(throw (GenericMsg fc ("Can't pass argument of type " ++ show n ++ " to foreign function")))
|
(throw (GenericMsg fc ("Can't pass argument of type " ++ show n ++ " to foreign function")))
|
||||||
tySpec ty = throw (GenericMsg (getFC ty) ("Can't pass argument of type " ++ show ty ++ " to foreign function"))
|
tySpec ty = throw (GenericMsg (getFC ty) ("Can't pass argument of type " ++ show ty ++ " to foreign function"))
|
||||||
|
|
||||||
@ -119,6 +136,104 @@ mutual
|
|||||||
chezExtPrim i vs prim args
|
chezExtPrim i vs prim args
|
||||||
= schExtCommon chezExtPrim i vs prim args
|
= schExtCommon chezExtPrim i vs prim args
|
||||||
|
|
||||||
|
-- Reference label for keeping track of loaded external libraries
|
||||||
|
data Loaded : Type where
|
||||||
|
|
||||||
|
cftySpec : FC -> CFType -> Core String
|
||||||
|
cftySpec fc CFUnit = pure "void"
|
||||||
|
cftySpec fc CFInt = pure "int"
|
||||||
|
cftySpec fc CFString = pure "string"
|
||||||
|
cftySpec fc CFDouble = pure "double"
|
||||||
|
cftySpec fc CFChar = pure "char"
|
||||||
|
cftySpec fc CFPtr = pure "void*"
|
||||||
|
cftySpec fc (CFIORes t) = cftySpec fc t
|
||||||
|
cftySpec fc t = throw (GenericMsg fc ("Can't pass argument of type " ++ show t ++
|
||||||
|
" to foreign function"))
|
||||||
|
|
||||||
|
cCall : {auto c : Ref Ctxt Defs} ->
|
||||||
|
{auto l : Ref Loaded (List String)} ->
|
||||||
|
FC -> (cfn : String) -> (clib : String) ->
|
||||||
|
List (Name, CFType) -> CFType -> Core (String, String)
|
||||||
|
cCall fc cfn clib args ret
|
||||||
|
= do loaded <- get Loaded
|
||||||
|
lib <- if clib `elem` loaded
|
||||||
|
then pure ""
|
||||||
|
else do (fname, fullname) <- locate clib
|
||||||
|
put Loaded (clib :: loaded)
|
||||||
|
pure $ "(load-shared-object \""
|
||||||
|
++ escapeQuotes fullname
|
||||||
|
++ "\")\n"
|
||||||
|
argTypes <- traverse (\a => do s <- cftySpec fc (snd a)
|
||||||
|
pure (fst a, s)) args
|
||||||
|
retType <- cftySpec fc ret
|
||||||
|
let call = "((foreign-procedure #f " ++ show cfn ++ " ("
|
||||||
|
++ showSep " " (map snd argTypes) ++ ") " ++ retType ++ ") "
|
||||||
|
++ showSep " " (map (schName . fst) argTypes) ++ ")"
|
||||||
|
|
||||||
|
pure (lib, case ret of
|
||||||
|
CFIORes _ => handleRet retType call
|
||||||
|
_ => call)
|
||||||
|
|
||||||
|
schemeCall : FC -> (sfn : String) ->
|
||||||
|
List Name -> CFType -> Core String
|
||||||
|
schemeCall fc sfn argns ret
|
||||||
|
= let call = "(" ++ sfn ++ " " ++ showSep " " (map schName argns) ++ ")" in
|
||||||
|
case ret of
|
||||||
|
CFIORes _ => pure $ mkWorld call
|
||||||
|
_ => pure call
|
||||||
|
|
||||||
|
-- Use a calling convention to compile a foreign def.
|
||||||
|
-- Returns any preamble needed for loading libraries, and the body of the
|
||||||
|
-- function call.
|
||||||
|
useCC : {auto c : Ref Ctxt Defs} ->
|
||||||
|
{auto l : Ref Loaded (List String)} ->
|
||||||
|
FC -> List String -> List (Name, CFType) -> CFType -> Core (String, String)
|
||||||
|
useCC fc [] args ret
|
||||||
|
= throw (GenericMsg fc "No recognised foreign calling convention")
|
||||||
|
useCC fc (cc :: ccs) args ret
|
||||||
|
= case parseCC cc of
|
||||||
|
Nothing => useCC fc ccs args ret
|
||||||
|
Just ("scheme", [sfn]) =>
|
||||||
|
do body <- schemeCall fc sfn (map fst args) ret
|
||||||
|
pure ("", body)
|
||||||
|
Just ("C", [cfn, clib]) => cCall fc cfn clib args ret
|
||||||
|
Just ("C", [cfn, clib, chdr]) => cCall fc cfn clib args ret
|
||||||
|
_ => useCC fc ccs args ret
|
||||||
|
|
||||||
|
-- For every foreign arg type, return a name, and whether to pass it to the
|
||||||
|
-- foreign call (we don't pass '%World')
|
||||||
|
mkArgs : Int -> List CFType -> List (Name, Bool)
|
||||||
|
mkArgs i [] = []
|
||||||
|
mkArgs i (CFWorld :: cs) = (MN "farg" i, False) :: mkArgs i cs
|
||||||
|
mkArgs i (c :: cs) = (MN "farg" i, True) :: mkArgs (i + 1) cs
|
||||||
|
|
||||||
|
schFgnDef : {auto c : Ref Ctxt Defs} ->
|
||||||
|
{auto l : Ref Loaded (List String)} ->
|
||||||
|
FC -> Name -> CDef -> Core (String, String)
|
||||||
|
schFgnDef fc n (MkForeign cs args ret)
|
||||||
|
= do let argns = mkArgs 0 args
|
||||||
|
let allargns = map fst argns
|
||||||
|
let useargns = map fst (filter snd argns)
|
||||||
|
(load, body) <- useCC fc cs (zip useargns args) ret
|
||||||
|
defs <- get Ctxt
|
||||||
|
pure (load,
|
||||||
|
"(define " ++ schName !(full (gamma defs) n) ++
|
||||||
|
" (lambda (" ++ showSep " " (map schName allargns) ++ ") " ++
|
||||||
|
body ++ "))\n")
|
||||||
|
schFgnDef _ _ _ = pure ("", "")
|
||||||
|
|
||||||
|
getFgnCall : {auto c : Ref Ctxt Defs} ->
|
||||||
|
{auto l : Ref Loaded (List String)} ->
|
||||||
|
Name -> Core (String, String)
|
||||||
|
getFgnCall n
|
||||||
|
= do defs <- get Ctxt
|
||||||
|
case !(lookupCtxtExact n (gamma defs)) of
|
||||||
|
Nothing => throw (InternalError ("Compiling undefined name " ++ show n))
|
||||||
|
Just def => case compexpr def of
|
||||||
|
Nothing =>
|
||||||
|
throw (InternalError ("No compiled definition for " ++ show n))
|
||||||
|
Just d => schFgnDef (location def) n d
|
||||||
|
|
||||||
||| Compile a TT expression to Chez Scheme
|
||| Compile a TT expression to Chez Scheme
|
||||||
compileToSS : Ref Ctxt Defs ->
|
compileToSS : Ref Ctxt Defs ->
|
||||||
ClosedTerm -> (outfile : String) -> Core ()
|
ClosedTerm -> (outfile : String) -> Core ()
|
||||||
@ -127,13 +242,17 @@ compileToSS c tm outfile
|
|||||||
libs <- findLibs ds
|
libs <- findLibs ds
|
||||||
(ns, tags) <- findUsedNames tm
|
(ns, tags) <- findUsedNames tm
|
||||||
defs <- get Ctxt
|
defs <- get Ctxt
|
||||||
|
l <- newRef {t = List String} Loaded ["libc", "libc 6"]
|
||||||
|
fgndefs <- traverse getFgnCall ns
|
||||||
compdefs <- traverse (getScheme chezExtPrim defs) ns
|
compdefs <- traverse (getScheme chezExtPrim defs) ns
|
||||||
let code = concat compdefs
|
let code = concat (map snd fgndefs) ++ concat compdefs
|
||||||
main <- schExp chezExtPrim 0 [] !(compileExp tags tm)
|
main <- schExp chezExtPrim 0 [] !(compileExp tags tm)
|
||||||
chez <- coreLift findChez
|
chez <- coreLift findChez
|
||||||
support <- readDataFile "chez/support.ss"
|
support <- readDataFile "chez/support.ss"
|
||||||
let scm = schHeader chez (map snd libs) ++
|
let scm = schHeader chez (map snd libs) ++
|
||||||
support ++ code ++ main ++ schFooter
|
support ++ code ++
|
||||||
|
concat (map fst fgndefs) ++
|
||||||
|
main ++ schFooter
|
||||||
Right () <- coreLift $ writeFile outfile scm
|
Right () <- coreLift $ writeFile outfile scm
|
||||||
| Left err => throw (FileErr outfile err)
|
| Left err => throw (FileErr outfile err)
|
||||||
coreLift $ chmod outfile 0o755
|
coreLift $ chmod outfile 0o755
|
||||||
@ -177,4 +296,3 @@ executeExpr c tm
|
|||||||
export
|
export
|
||||||
codegenChez : Codegen
|
codegenChez : Codegen
|
||||||
codegenChez = MkCG compileExpr executeExpr
|
codegenChez = MkCG compileExpr executeExpr
|
||||||
|
|
||||||
|
@ -18,10 +18,6 @@ import System.Info
|
|||||||
|
|
||||||
%default covering
|
%default covering
|
||||||
|
|
||||||
firstExists : List String -> IO (Maybe String)
|
|
||||||
firstExists [] = pure Nothing
|
|
||||||
firstExists (x :: xs) = if !(exists x) then pure (Just x) else firstExists xs
|
|
||||||
|
|
||||||
findCSI : IO String
|
findCSI : IO String
|
||||||
findCSI = pure "/usr/bin/env csi"
|
findCSI = pure "/usr/bin/env csi"
|
||||||
|
|
||||||
|
@ -13,6 +13,11 @@ import Data.Vect
|
|||||||
|
|
||||||
%default covering
|
%default covering
|
||||||
|
|
||||||
|
export
|
||||||
|
firstExists : List String -> IO (Maybe String)
|
||||||
|
firstExists [] = pure Nothing
|
||||||
|
firstExists (x :: xs) = if !(exists x) then pure (Just x) else firstExists xs
|
||||||
|
|
||||||
schString : String -> String
|
schString : String -> String
|
||||||
schString s = concatMap okchar (unpack s)
|
schString s = concatMap okchar (unpack s)
|
||||||
where
|
where
|
||||||
@ -21,6 +26,7 @@ schString s = concatMap okchar (unpack s)
|
|||||||
then cast c
|
then cast c
|
||||||
else "C-" ++ show (cast {to=Int} c)
|
else "C-" ++ show (cast {to=Int} c)
|
||||||
|
|
||||||
|
export
|
||||||
schName : Name -> String
|
schName : Name -> String
|
||||||
schName (NS ns n) = showSep "-" ns ++ "-" ++ schName n
|
schName (NS ns n) = showSep "-" ns ++ "-" ++ schName n
|
||||||
schName (UN n) = schString n
|
schName (UN n) = schString n
|
||||||
@ -48,6 +54,7 @@ extendSVars {ns} xs vs = extSVars' (cast (length ns)) xs vs
|
|||||||
extSVars' i [] vs = vs
|
extSVars' i [] vs = vs
|
||||||
extSVars' i (x :: xs) vs = schName (MN "v" i) :: extSVars' (i + 1) xs vs
|
extSVars' i (x :: xs) vs = schName (MN "v" i) :: extSVars' (i + 1) xs vs
|
||||||
|
|
||||||
|
export
|
||||||
initSVars : (xs : List Name) -> SVars xs
|
initSVars : (xs : List Name) -> SVars xs
|
||||||
initSVars xs = rewrite sym (appendNilRightNeutral xs) in extendSVars xs []
|
initSVars xs = rewrite sym (appendNilRightNeutral xs) in extendSVars xs []
|
||||||
|
|
||||||
@ -215,6 +222,12 @@ schConstant WorldType = "#t"
|
|||||||
schCaseDef : Maybe String -> String
|
schCaseDef : Maybe String -> String
|
||||||
schCaseDef Nothing = ""
|
schCaseDef Nothing = ""
|
||||||
schCaseDef (Just tm) = "(else " ++ tm ++ ")"
|
schCaseDef (Just tm) = "(else " ++ tm ++ ")"
|
||||||
|
|
||||||
|
export
|
||||||
|
schArglist : SVars ns -> String
|
||||||
|
schArglist [] = ""
|
||||||
|
schArglist [x] = x
|
||||||
|
schArglist (x :: xs) = x ++ " " ++ schArglist xs
|
||||||
|
|
||||||
parameters (schExtPrim : {vars : _} -> Int -> SVars vars -> ExtPrim -> List (CExp vars) -> Core String)
|
parameters (schExtPrim : {vars : _} -> Int -> SVars vars -> ExtPrim -> List (CExp vars) -> Core String)
|
||||||
mutual
|
mutual
|
||||||
@ -338,11 +351,6 @@ parameters (schExtPrim : {vars : _} -> Int -> SVars vars -> ExtPrim -> List (CEx
|
|||||||
= throw (InternalError ("Badly formed external primitive " ++ show prim
|
= throw (InternalError ("Badly formed external primitive " ++ show prim
|
||||||
++ " " ++ show args))
|
++ " " ++ show args))
|
||||||
|
|
||||||
schArglist : SVars ns -> String
|
|
||||||
schArglist [] = ""
|
|
||||||
schArglist [x] = x
|
|
||||||
schArglist (x :: xs) = x ++ " " ++ schArglist xs
|
|
||||||
|
|
||||||
schDef : {auto c : Ref Ctxt Defs} ->
|
schDef : {auto c : Ref Ctxt Defs} ->
|
||||||
Name -> CDef -> Core String
|
Name -> CDef -> Core String
|
||||||
schDef n (MkFun args exp)
|
schDef n (MkFun args exp)
|
||||||
@ -351,6 +359,7 @@ parameters (schExtPrim : {vars : _} -> Int -> SVars vars -> ExtPrim -> List (CEx
|
|||||||
++ !(schExp 0 vs exp) ++ "))\n"
|
++ !(schExp 0 vs exp) ++ "))\n"
|
||||||
schDef n (MkError exp)
|
schDef n (MkError exp)
|
||||||
= pure $ "(define (" ++ schName !(getFullName n) ++ " . any-args) " ++ !(schExp 0 [] exp) ++ ")\n"
|
= pure $ "(define (" ++ schName !(getFullName n) ++ " . any-args) " ++ !(schExp 0 [] exp) ++ ")\n"
|
||||||
|
schDef n (MkForeign _ _ _) = pure "" -- compiled by specific back end
|
||||||
schDef n (MkCon t a) = pure "" -- Nothing to compile here
|
schDef n (MkCon t a) = pure "" -- Nothing to compile here
|
||||||
|
|
||||||
-- Convert the name to scheme code
|
-- Convert the name to scheme code
|
||||||
|
@ -17,20 +17,18 @@ import System.Info
|
|||||||
|
|
||||||
%default covering
|
%default covering
|
||||||
|
|
||||||
firstExists : List String -> IO (Maybe String)
|
|
||||||
firstExists [] = pure Nothing
|
|
||||||
firstExists (x :: xs) = if !(exists x) then pure (Just x) else firstExists xs
|
|
||||||
|
|
||||||
findRacket : IO String
|
findRacket : IO String
|
||||||
findRacket = pure "/usr/bin/env racket"
|
findRacket = pure "/usr/bin/env racket"
|
||||||
|
|
||||||
findRacoExe : IO String
|
findRacoExe : IO String
|
||||||
findRacoExe = pure "raco exe"
|
findRacoExe = pure "raco exe"
|
||||||
|
|
||||||
schHeader : String
|
schHeader : String -> String
|
||||||
schHeader
|
schHeader libs
|
||||||
= "#lang racket/base\n" ++
|
= "#lang racket/base\n" ++
|
||||||
"(require racket/promise)\n" ++ -- for force/delay
|
"(require racket/promise)\n" ++ -- for force/delay
|
||||||
|
"(require ffi/unsafe ffi/unsafe/define)\n" ++ -- for calling C
|
||||||
|
libs ++
|
||||||
"(let ()\n"
|
"(let ()\n"
|
||||||
|
|
||||||
schFooter : String
|
schFooter : String
|
||||||
@ -43,16 +41,151 @@ mutual
|
|||||||
racketPrim i vs prim args
|
racketPrim i vs prim args
|
||||||
= schExtCommon racketPrim i vs prim args
|
= schExtCommon racketPrim i vs prim args
|
||||||
|
|
||||||
|
-- Reference label for keeping track of loaded external libraries
|
||||||
|
data Loaded : Type where
|
||||||
|
|
||||||
|
cftySpec : FC -> CFType -> Core String
|
||||||
|
cftySpec fc CFUnit = pure "_void"
|
||||||
|
cftySpec fc CFInt = pure "_int"
|
||||||
|
cftySpec fc CFString = pure "_string/utf-8"
|
||||||
|
cftySpec fc CFDouble = pure "_double"
|
||||||
|
cftySpec fc CFChar = pure "_int8"
|
||||||
|
cftySpec fc CFPtr = pure "_pointer"
|
||||||
|
cftySpec fc (CFIORes t) = cftySpec fc t
|
||||||
|
cftySpec fc t = throw (GenericMsg fc ("Can't pass argument of type " ++ show t ++
|
||||||
|
" to foreign function"))
|
||||||
|
|
||||||
|
loadlib : String -> String -> String
|
||||||
|
loadlib libn ver
|
||||||
|
= "(define-ffi-definer define-" ++ libn ++
|
||||||
|
" (ffi-lib \"" ++ libn ++ "\" " ++ ver ++ "))\n"
|
||||||
|
|
||||||
|
getLibVers : String -> (String, String)
|
||||||
|
getLibVers libspec
|
||||||
|
= case words libspec of
|
||||||
|
[] => ("", "")
|
||||||
|
[fn] => case span (/='.') libspec of
|
||||||
|
(root, rest) => (root, "")
|
||||||
|
(fn :: vers) =>
|
||||||
|
(fst (span (/='.') fn),
|
||||||
|
"'(" ++ showSep " " (map show vers) ++ " #f)" )
|
||||||
|
|
||||||
|
cToRkt : CFType -> String -> String
|
||||||
|
cToRkt CFChar op = "(integer->char " ++ op ++ ")"
|
||||||
|
cToRkt _ op = op
|
||||||
|
|
||||||
|
rktToC : CFType -> String -> String
|
||||||
|
rktToC CFChar op = "(char->integer " ++ op ++ ")"
|
||||||
|
rktToC _ op = op
|
||||||
|
|
||||||
|
handleRet : CFType -> String -> String
|
||||||
|
handleRet CFUnit op = op ++ " " ++ mkWorld (schConstructor 0 [])
|
||||||
|
handleRet ret op = mkWorld (cToRkt ret op)
|
||||||
|
|
||||||
|
useArg : (Name, CFType) -> String
|
||||||
|
useArg (n, ty)
|
||||||
|
= rktToC ty (schName n)
|
||||||
|
|
||||||
|
cCall : {auto c : Ref Ctxt Defs} ->
|
||||||
|
{auto l : Ref Loaded (List String)} ->
|
||||||
|
FC -> (cfn : String) -> (clib : String) ->
|
||||||
|
List (Name, CFType) -> CFType -> Core (String, String)
|
||||||
|
cCall fc cfn libspec args ret
|
||||||
|
= do loaded <- get Loaded
|
||||||
|
let (libn, vers) = getLibVers libspec
|
||||||
|
lib <- if libn `elem` loaded
|
||||||
|
then pure ""
|
||||||
|
else do put Loaded (libn :: loaded)
|
||||||
|
pure (loadlib libn vers)
|
||||||
|
|
||||||
|
argTypes <- traverse (\a => do s <- cftySpec fc (snd a)
|
||||||
|
pure (a, s)) args
|
||||||
|
retType <- cftySpec fc ret
|
||||||
|
let cbind = "(define-" ++ libn ++ " " ++ cfn ++
|
||||||
|
" (_fun " ++ showSep " " (map snd argTypes) ++ " -> " ++
|
||||||
|
retType ++ "))\n"
|
||||||
|
let call = "(" ++ cfn ++ " " ++
|
||||||
|
showSep " " (map (useArg . fst) argTypes) ++ ")"
|
||||||
|
|
||||||
|
pure (lib ++ cbind, case ret of
|
||||||
|
CFIORes rt => handleRet rt call
|
||||||
|
_ => call)
|
||||||
|
|
||||||
|
schemeCall : FC -> (sfn : String) ->
|
||||||
|
List Name -> CFType -> Core String
|
||||||
|
schemeCall fc sfn argns ret
|
||||||
|
= let call = "(" ++ sfn ++ " " ++ showSep " " (map schName argns) ++ ")" in
|
||||||
|
case ret of
|
||||||
|
CFIORes _ => pure $ mkWorld call
|
||||||
|
_ => pure call
|
||||||
|
|
||||||
|
-- Use a calling convention to compile a foreign def.
|
||||||
|
-- Returns any preamble needed for loading libraries, and the body of the
|
||||||
|
-- function call.
|
||||||
|
useCC : {auto c : Ref Ctxt Defs} ->
|
||||||
|
{auto l : Ref Loaded (List String)} ->
|
||||||
|
FC -> List String -> List (Name, CFType) -> CFType -> Core (String, String)
|
||||||
|
useCC fc [] args ret
|
||||||
|
= throw (GenericMsg fc "No recognised foreign calling convention")
|
||||||
|
useCC fc (cc :: ccs) args ret
|
||||||
|
= case parseCC cc of
|
||||||
|
Nothing => useCC fc ccs args ret
|
||||||
|
Just ("scheme", [sfn]) =>
|
||||||
|
do body <- schemeCall fc sfn (map fst args) ret
|
||||||
|
pure ("", body)
|
||||||
|
Just ("C", [cfn, clib]) => cCall fc cfn clib args ret
|
||||||
|
Just ("C", [cfn, clib, chdr]) => cCall fc cfn clib args ret
|
||||||
|
_ => useCC fc ccs args ret
|
||||||
|
|
||||||
|
-- For every foreign arg type, return a name, and whether to pass it to the
|
||||||
|
-- foreign call (we don't pass '%World')
|
||||||
|
mkArgs : Int -> List CFType -> List (Name, Bool)
|
||||||
|
mkArgs i [] = []
|
||||||
|
mkArgs i (CFWorld :: cs) = (MN "farg" i, False) :: mkArgs i cs
|
||||||
|
mkArgs i (c :: cs) = (MN "farg" i, True) :: mkArgs (i + 1) cs
|
||||||
|
|
||||||
|
schFgnDef : {auto c : Ref Ctxt Defs} ->
|
||||||
|
{auto l : Ref Loaded (List String)} ->
|
||||||
|
FC -> Name -> CDef -> Core (String, String)
|
||||||
|
schFgnDef fc n (MkForeign cs args ret)
|
||||||
|
= do let argns = mkArgs 0 args
|
||||||
|
let allargns = map fst argns
|
||||||
|
let useargns = map fst (filter snd argns)
|
||||||
|
(load, body) <- useCC fc cs (zip useargns args) ret
|
||||||
|
defs <- get Ctxt
|
||||||
|
pure (load,
|
||||||
|
"(define " ++ schName !(full (gamma defs) n) ++
|
||||||
|
" (lambda (" ++ showSep " " (map schName allargns) ++ ") " ++
|
||||||
|
body ++ "))\n")
|
||||||
|
schFgnDef _ _ _ = pure ("", "")
|
||||||
|
|
||||||
|
getFgnCall : {auto c : Ref Ctxt Defs} ->
|
||||||
|
{auto l : Ref Loaded (List String)} ->
|
||||||
|
Name -> Core (String, String)
|
||||||
|
getFgnCall n
|
||||||
|
= do defs <- get Ctxt
|
||||||
|
case !(lookupCtxtExact n (gamma defs)) of
|
||||||
|
Nothing => throw (InternalError ("Compiling undefined name " ++ show n))
|
||||||
|
Just def => case compexpr def of
|
||||||
|
Nothing =>
|
||||||
|
throw (InternalError ("No compiled definition for " ++ show n))
|
||||||
|
Just d => schFgnDef (location def) n d
|
||||||
|
|
||||||
compileToRKT : Ref Ctxt Defs ->
|
compileToRKT : Ref Ctxt Defs ->
|
||||||
ClosedTerm -> (outfile : String) -> Core ()
|
ClosedTerm -> (outfile : String) -> Core ()
|
||||||
compileToRKT c tm outfile
|
compileToRKT c tm outfile
|
||||||
= do (ns, tags) <- findUsedNames tm
|
= do (ns, tags) <- findUsedNames tm
|
||||||
defs <- get Ctxt
|
defs <- get Ctxt
|
||||||
|
l <- newRef {t = List String} Loaded []
|
||||||
|
fgndefs <- traverse getFgnCall ns
|
||||||
compdefs <- traverse (getScheme racketPrim defs) ns
|
compdefs <- traverse (getScheme racketPrim defs) ns
|
||||||
let code = concat compdefs
|
let code = concat (map snd fgndefs) ++ concat compdefs
|
||||||
main <- schExp racketPrim 0 [] !(compileExp tags tm)
|
main <- schExp racketPrim 0 [] !(compileExp tags tm)
|
||||||
support <- readDataFile "racket/support.rkt"
|
support <- readDataFile "racket/support.rkt"
|
||||||
let scm = schHeader ++ support ++ code ++ "(void " ++ main ++ ")\n" ++ schFooter
|
let scm = schHeader (concat (map fst fgndefs)) ++
|
||||||
|
support ++ code ++
|
||||||
|
"(void " ++ main ++ ")\n" ++
|
||||||
|
schFooter
|
||||||
Right () <- coreLift $ writeFile outfile scm
|
Right () <- coreLift $ writeFile outfile scm
|
||||||
| Left err => throw (FileErr outfile err)
|
| Left err => throw (FileErr outfile err)
|
||||||
coreLift $ chmod outfile 0o755
|
coreLift $ chmod outfile 0o755
|
||||||
|
@ -498,7 +498,7 @@ searchType {vars} fc rigc defaults trying depth def checkdets top env target
|
|||||||
logNF 5 "For target" env nty
|
logNF 5 "For target" env nty
|
||||||
searchNames fc rigc defaults (target :: trying) depth def top env ambigok g nty)
|
searchNames fc rigc defaults (target :: trying) depth def top env ambigok g nty)
|
||||||
(\err => if ambig err then throw err
|
(\err => if ambig err then throw err
|
||||||
else tryGroups (maybe (Just err) Just merr) nty gs)
|
else tryGroups (Just $ fromMaybe err merr) nty gs)
|
||||||
|
|
||||||
-- Declared in Core.Unify as:
|
-- Declared in Core.Unify as:
|
||||||
-- search : {auto c : Ref Ctxt Defs} ->
|
-- search : {auto c : Ref Ctxt Defs} ->
|
||||||
|
@ -27,7 +27,7 @@ import Data.Buffer
|
|||||||
-- TTC files can only be compatible if the version number is the same
|
-- TTC files can only be compatible if the version number is the same
|
||||||
export
|
export
|
||||||
ttcVersion : Int
|
ttcVersion : Int
|
||||||
ttcVersion = 6
|
ttcVersion = 7
|
||||||
|
|
||||||
export
|
export
|
||||||
checkTTCVersion : Int -> Int -> Core ()
|
checkTTCVersion : Int -> Int -> Core ()
|
||||||
|
@ -8,7 +8,7 @@ import Core.TT
|
|||||||
|
|
||||||
import Data.Vect
|
import Data.Vect
|
||||||
|
|
||||||
%default total
|
%default covering
|
||||||
|
|
||||||
mutual
|
mutual
|
||||||
||| CExp - an expression ready for compiling.
|
||| CExp - an expression ready for compiling.
|
||||||
@ -53,12 +53,30 @@ mutual
|
|||||||
data CConstAlt : List Name -> Type where
|
data CConstAlt : List Name -> Type where
|
||||||
MkConstAlt : Constant -> CExp vars -> CConstAlt vars
|
MkConstAlt : Constant -> CExp vars -> CConstAlt vars
|
||||||
|
|
||||||
|
-- Argument type descriptors for foreign function calls
|
||||||
|
public export
|
||||||
|
data CFType : Type where
|
||||||
|
CFUnit : CFType
|
||||||
|
CFInt : CFType
|
||||||
|
CFString : CFType
|
||||||
|
CFDouble : CFType
|
||||||
|
CFChar : CFType
|
||||||
|
CFPtr : CFType
|
||||||
|
CFWorld : CFType
|
||||||
|
CFIORes : CFType -> CFType
|
||||||
|
CFUser : Name -> List CFType -> CFType
|
||||||
|
|
||||||
public export
|
public export
|
||||||
data CDef : Type where
|
data CDef : Type where
|
||||||
-- Normal function definition
|
-- Normal function definition
|
||||||
MkFun : (args : List Name) -> CExp args -> CDef
|
MkFun : (args : List Name) -> CExp args -> CDef
|
||||||
-- Constructor
|
-- Constructor
|
||||||
MkCon : (tag : Int) -> (arity : Nat) -> CDef
|
MkCon : (tag : Int) -> (arity : Nat) -> CDef
|
||||||
|
-- Foreign definition
|
||||||
|
MkForeign : (ccs : List String) ->
|
||||||
|
(fargs : List CFType) ->
|
||||||
|
CFType ->
|
||||||
|
CDef
|
||||||
-- A function which will fail at runtime (usually due to being a hole) so needs
|
-- A function which will fail at runtime (usually due to being a hole) so needs
|
||||||
-- to run, discarding arguments, no matter how many arguments are passed
|
-- to run, discarding arguments, no matter how many arguments are passed
|
||||||
MkError : CExp [] -> CDef
|
MkError : CExp [] -> CDef
|
||||||
@ -99,10 +117,25 @@ mutual
|
|||||||
show (MkConstAlt x exp)
|
show (MkConstAlt x exp)
|
||||||
= "(%constcase " ++ show x ++ " " ++ show exp ++ ")"
|
= "(%constcase " ++ show x ++ " " ++ show exp ++ ")"
|
||||||
|
|
||||||
|
export
|
||||||
|
Show CFType where
|
||||||
|
show CFUnit = "Unit"
|
||||||
|
show CFInt = "Int"
|
||||||
|
show CFString = "String"
|
||||||
|
show CFDouble = "Double"
|
||||||
|
show CFChar = "Char"
|
||||||
|
show CFPtr = "Ptr"
|
||||||
|
show CFWorld = "%World"
|
||||||
|
show (CFIORes t) = "IORes " ++ show t
|
||||||
|
show (CFUser n args) = show n ++ " " ++ showSep " " (map show args)
|
||||||
|
|
||||||
export
|
export
|
||||||
Show CDef where
|
Show CDef where
|
||||||
show (MkFun args exp) = show args ++ ": " ++ show exp
|
show (MkFun args exp) = show args ++ ": " ++ show exp
|
||||||
show (MkCon tag arity) = "Constructor tag " ++ show tag ++ " arity " ++ show arity
|
show (MkCon tag arity) = "Constructor tag " ++ show tag ++ " arity " ++ show arity
|
||||||
|
show (MkForeign ccs args ret)
|
||||||
|
= "Foreign call " ++ show ccs ++ " " ++
|
||||||
|
show args ++ " -> " ++ show ret
|
||||||
show (MkError exp) = "Error: " ++ show exp
|
show (MkError exp) = "Error: " ++ show exp
|
||||||
|
|
||||||
mutual
|
mutual
|
||||||
@ -111,7 +144,7 @@ mutual
|
|||||||
thin n (CLocal fc prf)
|
thin n (CLocal fc prf)
|
||||||
= let MkVar var' = insertVar {n} _ prf in
|
= let MkVar var' = insertVar {n} _ prf in
|
||||||
CLocal fc var'
|
CLocal fc var'
|
||||||
thin n (CRef fc x) = CRef fc x
|
thin _ (CRef fc x) = CRef fc x
|
||||||
thin {outer} {inner} n (CLam fc x sc)
|
thin {outer} {inner} n (CLam fc x sc)
|
||||||
= let sc' = thin {outer = x :: outer} {inner} n sc in
|
= let sc' = thin {outer = x :: outer} {inner} n sc in
|
||||||
CLam fc x sc'
|
CLam fc x sc'
|
||||||
@ -134,9 +167,9 @@ mutual
|
|||||||
thin n (CConstCase fc sc xs def)
|
thin n (CConstCase fc sc xs def)
|
||||||
= CConstCase fc (thin n sc) (assert_total (map (thinConstAlt n) xs))
|
= CConstCase fc (thin n sc) (assert_total (map (thinConstAlt n) xs))
|
||||||
(assert_total (map (thin n) def))
|
(assert_total (map (thin n) def))
|
||||||
thin n (CPrimVal fc x) = CPrimVal fc x
|
thin _ (CPrimVal fc x) = CPrimVal fc x
|
||||||
thin n (CErased fc) = CErased fc
|
thin _ (CErased fc) = CErased fc
|
||||||
thin n (CCrash fc x) = CCrash fc x
|
thin _ (CCrash fc x) = CCrash fc x
|
||||||
|
|
||||||
thinConAlt : (n : Name) -> CConAlt (outer ++ inner) -> CConAlt (outer ++ n :: inner)
|
thinConAlt : (n : Name) -> CConAlt (outer ++ inner) -> CConAlt (outer ++ n :: inner)
|
||||||
thinConAlt {outer} {inner} n (MkConAlt x tag args sc)
|
thinConAlt {outer} {inner} n (MkConAlt x tag args sc)
|
||||||
@ -186,18 +219,18 @@ mutual
|
|||||||
|
|
||||||
export
|
export
|
||||||
getFC : CExp args -> FC
|
getFC : CExp args -> FC
|
||||||
getFC (CLocal fc y) = fc
|
getFC (CLocal fc _) = fc
|
||||||
getFC (CRef fc x) = fc
|
getFC (CRef fc _) = fc
|
||||||
getFC (CLam fc x y) = fc
|
getFC (CLam fc _ _) = fc
|
||||||
getFC (CLet fc x y z) = fc
|
getFC (CLet fc _ _ _) = fc
|
||||||
getFC (CApp fc x xs) = fc
|
getFC (CApp fc _ _) = fc
|
||||||
getFC (CCon fc x tag xs) = fc
|
getFC (CCon fc _ _ _) = fc
|
||||||
getFC (COp fc x xs) = fc
|
getFC (COp fc _ _) = fc
|
||||||
getFC (CExtPrim fc p xs) = fc
|
getFC (CExtPrim fc _ _) = fc
|
||||||
getFC (CForce fc x) = fc
|
getFC (CForce fc _) = fc
|
||||||
getFC (CDelay fc x) = fc
|
getFC (CDelay fc _) = fc
|
||||||
getFC (CConCase fc sc xs x) = fc
|
getFC (CConCase fc _ _ _) = fc
|
||||||
getFC (CConstCase fc sc xs x) = fc
|
getFC (CConstCase fc _ _ _) = fc
|
||||||
getFC (CPrimVal fc x) = fc
|
getFC (CPrimVal fc _) = fc
|
||||||
getFC (CErased fc) = fc
|
getFC (CErased fc) = fc
|
||||||
getFC (CCrash fc x) = fc
|
getFC (CCrash fc _) = fc
|
||||||
|
@ -34,6 +34,10 @@ data Def : Type where
|
|||||||
-- find size changes in termination checking
|
-- find size changes in termination checking
|
||||||
Def -- Ordinary function definition
|
Def -- Ordinary function definition
|
||||||
ExternDef : (arity : Nat) -> Def
|
ExternDef : (arity : Nat) -> Def
|
||||||
|
ForeignDef : (arity : Nat) ->
|
||||||
|
List String -> -- supported calling conventions,
|
||||||
|
-- e.g "C:printf,libc,stdlib.h", "scheme:display", ...
|
||||||
|
Def
|
||||||
Builtin : {arity : Nat} -> PrimFn arity -> Def
|
Builtin : {arity : Nat} -> PrimFn arity -> Def
|
||||||
DCon : (tag : Int) -> (arity : Nat) -> Def -- data constructor
|
DCon : (tag : Int) -> (arity : Nat) -> Def -- data constructor
|
||||||
TCon : (tag : Int) -> (arity : Nat) ->
|
TCon : (tag : Int) -> (arity : Nat) ->
|
||||||
@ -65,7 +69,9 @@ Show Def where
|
|||||||
= "TyCon " ++ show t ++ " " ++ show a ++ " params: " ++ show ps ++
|
= "TyCon " ++ show t ++ " " ++ show a ++ " params: " ++ show ps ++
|
||||||
" constructors: " ++ show cons ++
|
" constructors: " ++ show cons ++
|
||||||
" mutual with: " ++ show ms
|
" mutual with: " ++ show ms
|
||||||
show (ExternDef arity) = "<external def with arith " ++ show arity ++ ">"
|
show (ExternDef arity) = "<external def with arity " ++ show arity ++ ">"
|
||||||
|
show (ForeignDef a cs) = "<foreign def with arity " ++ show a ++
|
||||||
|
" " ++ show cs ++">"
|
||||||
show (Builtin {arity} _) = "<builtin with arith " ++ show arity ++ ">"
|
show (Builtin {arity} _) = "<builtin with arith " ++ show arity ++ ">"
|
||||||
show (Hole _ p) = "Hole" ++ if p then " [impl]" else ""
|
show (Hole _ p) = "Hole" ++ if p then " [impl]" else ""
|
||||||
show (BySearch c depth def) = "Search in " ++ show def
|
show (BySearch c depth def) = "Search in " ++ show def
|
||||||
|
@ -248,65 +248,65 @@ Show Error where
|
|||||||
export
|
export
|
||||||
getErrorLoc : Error -> Maybe FC
|
getErrorLoc : Error -> Maybe FC
|
||||||
getErrorLoc (Fatal err) = getErrorLoc err
|
getErrorLoc (Fatal err) = getErrorLoc err
|
||||||
getErrorLoc (CantConvert loc env tm y) = Just loc
|
getErrorLoc (CantConvert loc _ _ _) = Just loc
|
||||||
getErrorLoc (CantSolveEq loc env tm y) = Just loc
|
getErrorLoc (CantSolveEq loc _ _ _) = Just loc
|
||||||
getErrorLoc (PatternVariableUnifies loc env n x) = Just loc
|
getErrorLoc (PatternVariableUnifies loc _ _ _) = Just loc
|
||||||
getErrorLoc (CyclicMeta loc n) = Just loc
|
getErrorLoc (CyclicMeta loc _) = Just loc
|
||||||
getErrorLoc (WhenUnifying loc env tm y z) = Just loc
|
getErrorLoc (WhenUnifying loc _ _ _ _) = Just loc
|
||||||
getErrorLoc (ValidCase loc env y) = Just loc
|
getErrorLoc (ValidCase loc _ _) = Just loc
|
||||||
getErrorLoc (UndefinedName loc y) = Just loc
|
getErrorLoc (UndefinedName loc _) = Just loc
|
||||||
getErrorLoc (InvisibleName loc y _) = Just loc
|
getErrorLoc (InvisibleName loc _ _) = Just loc
|
||||||
getErrorLoc (BadTypeConType loc y) = Just loc
|
getErrorLoc (BadTypeConType loc _) = Just loc
|
||||||
getErrorLoc (BadDataConType loc y z) = Just loc
|
getErrorLoc (BadDataConType loc _ _) = Just loc
|
||||||
getErrorLoc (NotCovering loc _ _) = Just loc
|
getErrorLoc (NotCovering loc _ _) = Just loc
|
||||||
getErrorLoc (NotTotal loc _ _) = Just loc
|
getErrorLoc (NotTotal loc _ _) = Just loc
|
||||||
getErrorLoc (LinearUsed loc k y) = Just loc
|
getErrorLoc (LinearUsed loc _ _) = Just loc
|
||||||
getErrorLoc (LinearMisuse loc y z w) = Just loc
|
getErrorLoc (LinearMisuse loc _ _ _) = Just loc
|
||||||
getErrorLoc (BorrowPartial loc _ _ _) = Just loc
|
getErrorLoc (BorrowPartial loc _ _ _) = Just loc
|
||||||
getErrorLoc (BorrowPartialType loc _ _) = Just loc
|
getErrorLoc (BorrowPartialType loc _ _) = Just loc
|
||||||
getErrorLoc (AmbiguousName loc xs) = Just loc
|
getErrorLoc (AmbiguousName loc _) = Just loc
|
||||||
getErrorLoc (AmbiguousElab loc _ xs) = Just loc
|
getErrorLoc (AmbiguousElab loc _ _) = Just loc
|
||||||
getErrorLoc (AmbiguousSearch loc _ xs) = Just loc
|
getErrorLoc (AmbiguousSearch loc _ _) = Just loc
|
||||||
getErrorLoc (AllFailed ((_, x) :: xs)) = getErrorLoc x
|
getErrorLoc (AllFailed ((_, x) :: _)) = getErrorLoc x
|
||||||
getErrorLoc (AllFailed []) = Nothing
|
getErrorLoc (AllFailed []) = Nothing
|
||||||
getErrorLoc (RecordTypeNeeded loc _) = Just loc
|
getErrorLoc (RecordTypeNeeded loc _) = Just loc
|
||||||
getErrorLoc (NotRecordField loc _ _) = Just loc
|
getErrorLoc (NotRecordField loc _ _) = Just loc
|
||||||
getErrorLoc (NotRecordType loc _) = Just loc
|
getErrorLoc (NotRecordType loc _) = Just loc
|
||||||
getErrorLoc (IncompatibleFieldUpdate loc _) = Just loc
|
getErrorLoc (IncompatibleFieldUpdate loc _) = Just loc
|
||||||
getErrorLoc (InvalidImplicits loc _ y tm) = Just loc
|
getErrorLoc (InvalidImplicits loc _ _ _) = Just loc
|
||||||
getErrorLoc (TryWithImplicits loc _ _) = Just loc
|
getErrorLoc (TryWithImplicits loc _ _) = Just loc
|
||||||
getErrorLoc (BadUnboundImplicit loc _ _ _) = Just loc
|
getErrorLoc (BadUnboundImplicit loc _ _ _) = Just loc
|
||||||
getErrorLoc (CantSolveGoal loc _ tm) = Just loc
|
getErrorLoc (CantSolveGoal loc _ _) = Just loc
|
||||||
getErrorLoc (DeterminingArg loc n y env tm) = Just loc
|
getErrorLoc (DeterminingArg loc _ _ _ _) = Just loc
|
||||||
getErrorLoc (UnsolvedHoles ((loc, _) :: xs)) = Just loc
|
getErrorLoc (UnsolvedHoles ((loc, _) :: _)) = Just loc
|
||||||
getErrorLoc (UnsolvedHoles []) = Nothing
|
getErrorLoc (UnsolvedHoles []) = Nothing
|
||||||
getErrorLoc (CantInferArgType loc _ y z tm) = Just loc
|
getErrorLoc (CantInferArgType loc _ _ _ _) = Just loc
|
||||||
getErrorLoc (SolvedNamedHole loc _ _ y) = Just loc
|
getErrorLoc (SolvedNamedHole loc _ _ _) = Just loc
|
||||||
getErrorLoc (VisibilityError loc y z w s) = Just loc
|
getErrorLoc (VisibilityError loc _ _ _ _) = Just loc
|
||||||
getErrorLoc (NonLinearPattern loc y) = Just loc
|
getErrorLoc (NonLinearPattern loc _) = Just loc
|
||||||
getErrorLoc (BadPattern loc y) = Just loc
|
getErrorLoc (BadPattern loc _) = Just loc
|
||||||
getErrorLoc (NoDeclaration loc y) = Just loc
|
getErrorLoc (NoDeclaration loc _) = Just loc
|
||||||
getErrorLoc (AlreadyDefined loc y) = Just loc
|
getErrorLoc (AlreadyDefined loc _) = Just loc
|
||||||
getErrorLoc (NotFunctionType loc _ tm) = Just loc
|
getErrorLoc (NotFunctionType loc _ _) = Just loc
|
||||||
getErrorLoc (RewriteNoChange loc _ tm ty) = Just loc
|
getErrorLoc (RewriteNoChange loc _ _ _) = Just loc
|
||||||
getErrorLoc (NotRewriteRule loc _ ty) = Just loc
|
getErrorLoc (NotRewriteRule loc _ _) = Just loc
|
||||||
getErrorLoc (CaseCompile loc y z) = Just loc
|
getErrorLoc (CaseCompile loc _ _) = Just loc
|
||||||
getErrorLoc (MatchTooSpecific loc y tm) = Just loc
|
getErrorLoc (MatchTooSpecific loc _ _) = Just loc
|
||||||
getErrorLoc (BadDotPattern loc _ y tm z) = Just loc
|
getErrorLoc (BadDotPattern loc _ _ _ _) = Just loc
|
||||||
getErrorLoc (BadImplicit loc y) = Just loc
|
getErrorLoc (BadImplicit loc _) = Just loc
|
||||||
getErrorLoc (BadRunElab loc _ tm) = Just loc
|
getErrorLoc (BadRunElab loc _ _) = Just loc
|
||||||
getErrorLoc (GenericMsg loc y) = Just loc
|
getErrorLoc (GenericMsg loc _) = Just loc
|
||||||
getErrorLoc (TTCError x) = Nothing
|
getErrorLoc (TTCError _) = Nothing
|
||||||
getErrorLoc (FileErr x y) = Nothing
|
getErrorLoc (FileErr _ _) = Nothing
|
||||||
getErrorLoc (ParseFail loc x) = Just loc
|
getErrorLoc (ParseFail loc _) = Just loc
|
||||||
getErrorLoc (ModuleNotFound loc xs) = Just loc
|
getErrorLoc (ModuleNotFound loc _) = Just loc
|
||||||
getErrorLoc (CyclicImports xs) = Nothing
|
getErrorLoc (CyclicImports _) = Nothing
|
||||||
getErrorLoc ForceNeeded = Nothing
|
getErrorLoc ForceNeeded = Nothing
|
||||||
getErrorLoc (InternalError x) = Nothing
|
getErrorLoc (InternalError _) = Nothing
|
||||||
getErrorLoc (InType x y err) = getErrorLoc err
|
getErrorLoc (InType _ _ err) = getErrorLoc err
|
||||||
getErrorLoc (InCon x y err) = getErrorLoc err
|
getErrorLoc (InCon _ _ err) = getErrorLoc err
|
||||||
getErrorLoc (InLHS x y err) = getErrorLoc err
|
getErrorLoc (InLHS _ _ err) = getErrorLoc err
|
||||||
getErrorLoc (InRHS x y err) = getErrorLoc err
|
getErrorLoc (InRHS _ _ err) = getErrorLoc err
|
||||||
|
|
||||||
-- Core is a wrapper around IO that is specialised for efficiency.
|
-- Core is a wrapper around IO that is specialised for efficiency.
|
||||||
export
|
export
|
||||||
|
@ -81,7 +81,7 @@ nsToPath loc ns
|
|||||||
= do d <- getDirs
|
= do d <- getDirs
|
||||||
let fnameBase = showSep (cast sep) (reverse ns)
|
let fnameBase = showSep (cast sep) (reverse ns)
|
||||||
let fs = map (\p => p ++ cast sep ++ fnameBase ++ ".ttc")
|
let fs = map (\p => p ++ cast sep ++ fnameBase ++ ".ttc")
|
||||||
(build_dir d :: extra_dirs d)
|
((build_dir d ++ cast sep ++ "ttc") :: extra_dirs d)
|
||||||
Just f <- firstAvailable fs
|
Just f <- firstAvailable fs
|
||||||
| Nothing => pure (Left (ModuleNotFound loc ns))
|
| Nothing => pure (Left (ModuleNotFound loc ns))
|
||||||
pure (Right f)
|
pure (Right f)
|
||||||
@ -151,7 +151,7 @@ makeBuildDirectory ns
|
|||||||
[] => []
|
[] => []
|
||||||
(n :: ns) => ns -- first item is file name
|
(n :: ns) => ns -- first item is file name
|
||||||
let fname = showSep (cast sep) (reverse ndirs)
|
let fname = showSep (cast sep) (reverse ndirs)
|
||||||
Right _ <- coreLift $ mkdirs (build_dir d :: reverse ndirs)
|
Right _ <- coreLift $ mkdirs (build_dir d :: "ttc" :: reverse ndirs)
|
||||||
| Left err => throw (FileErr (bdir ++ cast sep ++ fname) err)
|
| Left err => throw (FileErr (bdir ++ cast sep ++ fname) err)
|
||||||
pure ()
|
pure ()
|
||||||
|
|
||||||
@ -167,7 +167,7 @@ getTTCFileName inp ext
|
|||||||
let ns = pathToNS (working_dir d) inp
|
let ns = pathToNS (working_dir d) inp
|
||||||
let fname = showSep (cast sep) (reverse ns) ++ ext
|
let fname = showSep (cast sep) (reverse ns) ++ ext
|
||||||
let bdir = build_dir d
|
let bdir = build_dir d
|
||||||
pure $ bdir ++ cast sep ++ fname
|
pure $ bdir ++ cast sep ++ "ttc" ++ cast sep ++ fname
|
||||||
|
|
||||||
-- Given a root executable name, return the name in the build directory
|
-- Given a root executable name, return the name in the build directory
|
||||||
export
|
export
|
||||||
|
@ -15,7 +15,7 @@ extend x = (::) {x}
|
|||||||
export
|
export
|
||||||
length : Env tm xs -> Nat
|
length : Env tm xs -> Nat
|
||||||
length [] = 0
|
length [] = 0
|
||||||
length (x :: xs) = S (length xs)
|
length (_ :: xs) = S (length xs)
|
||||||
|
|
||||||
public export
|
public export
|
||||||
data IsDefined : Name -> List Name -> Type where
|
data IsDefined : Name -> List Name -> Type where
|
||||||
@ -118,11 +118,6 @@ letToLam (Let c val ty :: env) = Lam c Explicit ty :: letToLam env
|
|||||||
letToLam (b :: env) = b :: letToLam env
|
letToLam (b :: env) = b :: letToLam env
|
||||||
|
|
||||||
mutual
|
mutual
|
||||||
dropS : List Nat -> List Nat
|
|
||||||
dropS [] = []
|
|
||||||
dropS (Z :: xs) = dropS xs
|
|
||||||
dropS (S p :: xs) = p :: dropS xs
|
|
||||||
|
|
||||||
-- Quicker, if less safe, to store variables as a Nat, for quick comparison
|
-- Quicker, if less safe, to store variables as a Nat, for quick comparison
|
||||||
findUsed : Env Term vars -> List Nat -> Term vars -> List Nat
|
findUsed : Env Term vars -> List Nat -> Term vars -> List Nat
|
||||||
findUsed env used (Local fc r idx p)
|
findUsed env used (Local fc r idx p)
|
||||||
@ -145,6 +140,11 @@ mutual
|
|||||||
dropS (findUsed (b :: env)
|
dropS (findUsed (b :: env)
|
||||||
(map S (findUsedInBinder env used b))
|
(map S (findUsedInBinder env used b))
|
||||||
tm)
|
tm)
|
||||||
|
where
|
||||||
|
dropS : List Nat -> List Nat
|
||||||
|
dropS [] = []
|
||||||
|
dropS (Z :: xs) = dropS xs
|
||||||
|
dropS (S p :: xs) = p :: dropS xs
|
||||||
findUsed env used (App fc fn arg)
|
findUsed env used (App fc fn arg)
|
||||||
= findUsed env (findUsed env used fn) arg
|
= findUsed env (findUsed env used fn) arg
|
||||||
findUsed env used (As fc a p)
|
findUsed env used (As fc a p)
|
||||||
|
@ -17,5 +17,4 @@ addPrim p
|
|||||||
export
|
export
|
||||||
addPrimitives : {auto c : Ref Ctxt Defs} -> Core ()
|
addPrimitives : {auto c : Ref Ctxt Defs} -> Core ()
|
||||||
addPrimitives
|
addPrimitives
|
||||||
= do traverse addPrim allPrimitives
|
= traverse_ addPrim allPrimitives
|
||||||
pure ()
|
|
||||||
|
@ -36,9 +36,9 @@ nameRoot (UN n) = n
|
|||||||
nameRoot (MN n _) = n
|
nameRoot (MN n _) = n
|
||||||
nameRoot (PV n _) = nameRoot n
|
nameRoot (PV n _) = nameRoot n
|
||||||
nameRoot (DN _ n) = nameRoot n
|
nameRoot (DN _ n) = nameRoot n
|
||||||
nameRoot (Nested n inner) = nameRoot inner
|
nameRoot (Nested _ inner) = nameRoot inner
|
||||||
nameRoot (CaseBlock n inner) = "$" ++ show n
|
nameRoot (CaseBlock n _) = "$" ++ show n
|
||||||
nameRoot (WithBlock n inner) = "$" ++ show n
|
nameRoot (WithBlock n _) = "$" ++ show n
|
||||||
nameRoot (Resolved i) = "$" ++ show i
|
nameRoot (Resolved i) = "$" ++ show i
|
||||||
|
|
||||||
--- Drop a namespace from a name
|
--- Drop a namespace from a name
|
||||||
|
@ -407,16 +407,16 @@ data Term : List Name -> Type where
|
|||||||
|
|
||||||
export
|
export
|
||||||
getLoc : Term vars -> FC
|
getLoc : Term vars -> FC
|
||||||
getLoc (Local fc x idx y) = fc
|
getLoc (Local fc _ _ _) = fc
|
||||||
getLoc (Ref fc x name) = fc
|
getLoc (Ref fc _ _) = fc
|
||||||
getLoc (Meta fc x y xs) = fc
|
getLoc (Meta fc _ _ _) = fc
|
||||||
getLoc (Bind fc x b scope) = fc
|
getLoc (Bind fc _ _ _) = fc
|
||||||
getLoc (App fc fn arg) = fc
|
getLoc (App fc _ _) = fc
|
||||||
getLoc (As fc x y) = fc
|
getLoc (As fc _ _) = fc
|
||||||
getLoc (TDelayed fc x y) = fc
|
getLoc (TDelayed fc _ _) = fc
|
||||||
getLoc (TDelay fc x t y) = fc
|
getLoc (TDelay fc _ _ _) = fc
|
||||||
getLoc (TForce fc x) = fc
|
getLoc (TForce fc _) = fc
|
||||||
getLoc (PrimVal fc c) = fc
|
getLoc (PrimVal fc _) = fc
|
||||||
getLoc (Erased fc) = fc
|
getLoc (Erased fc) = fc
|
||||||
getLoc (TType fc) = fc
|
getLoc (TType fc) = fc
|
||||||
|
|
||||||
|
@ -638,20 +638,48 @@ mutual
|
|||||||
pure (MkConstAlt c sc)
|
pure (MkConstAlt c sc)
|
||||||
|
|
||||||
export
|
export
|
||||||
TTC CDef where
|
TTC CFType where
|
||||||
toBuf b (MkFun args cexpr) = do tag 0; toBuf b args; toBuf b cexpr
|
toBuf b CFUnit = tag 0
|
||||||
toBuf b (MkCon t arity) = do tag 1; toBuf b t; toBuf b arity
|
toBuf b CFInt = tag 1
|
||||||
toBuf b (MkError cexpr) = do tag 2; toBuf b cexpr
|
toBuf b CFString = tag 2
|
||||||
|
toBuf b CFDouble = tag 3
|
||||||
|
toBuf b CFChar = tag 4
|
||||||
|
toBuf b CFPtr = tag 5
|
||||||
|
toBuf b CFWorld = tag 6
|
||||||
|
toBuf b (CFIORes t) = do tag 7; toBuf b t
|
||||||
|
toBuf b (CFUser n a) = do tag 8; toBuf b n; toBuf b a
|
||||||
|
|
||||||
fromBuf b
|
fromBuf b
|
||||||
= case !getTag of
|
= case !getTag of
|
||||||
0 => do args <- fromBuf b; cexpr <- fromBuf b
|
0 => pure CFUnit
|
||||||
pure (MkFun args cexpr)
|
1 => pure CFInt
|
||||||
1 => do t <- fromBuf b; arity <- fromBuf b
|
2 => pure CFString
|
||||||
pure (MkCon t arity)
|
3 => pure CFDouble
|
||||||
2 => do cexpr <- fromBuf b
|
4 => pure CFChar
|
||||||
pure (MkError cexpr)
|
5 => pure CFPtr
|
||||||
_ => corrupt "CDef"
|
6 => pure CFWorld
|
||||||
|
7 => do t <- fromBuf b; pure (CFIORes t)
|
||||||
|
8 => do n <- fromBuf b; a <- fromBuf b; pure (CFUser n a)
|
||||||
|
_ => corrupt "CFType"
|
||||||
|
|
||||||
|
export
|
||||||
|
TTC CDef where
|
||||||
|
toBuf b (MkFun args cexpr) = do tag 0; toBuf b args; toBuf b cexpr
|
||||||
|
toBuf b (MkCon t arity) = do tag 1; toBuf b t; toBuf b arity
|
||||||
|
toBuf b (MkForeign cs args ret) = do tag 2; toBuf b cs; toBuf b args; toBuf b ret
|
||||||
|
toBuf b (MkError cexpr) = do tag 3; toBuf b cexpr
|
||||||
|
|
||||||
|
fromBuf b
|
||||||
|
= case !getTag of
|
||||||
|
0 => do args <- fromBuf b; cexpr <- fromBuf b
|
||||||
|
pure (MkFun args cexpr)
|
||||||
|
1 => do t <- fromBuf b; arity <- fromBuf b
|
||||||
|
pure (MkCon t arity)
|
||||||
|
2 => do cs <- fromBuf b; args <- fromBuf b; ret <- fromBuf b
|
||||||
|
pure (MkForeign cs args ret)
|
||||||
|
3 => do cexpr <- fromBuf b
|
||||||
|
pure (MkError cexpr)
|
||||||
|
_ => corrupt "CDef"
|
||||||
|
|
||||||
export
|
export
|
||||||
TTC CG where
|
TTC CG where
|
||||||
@ -708,19 +736,21 @@ TTC Def where
|
|||||||
= do tag 1; toBuf b args; toBuf b ct; toBuf b rt; toBuf b pats
|
= do tag 1; toBuf b args; toBuf b ct; toBuf b rt; toBuf b pats
|
||||||
toBuf b (ExternDef a)
|
toBuf b (ExternDef a)
|
||||||
= do tag 2; toBuf b a
|
= do tag 2; toBuf b a
|
||||||
|
toBuf b (ForeignDef a cs)
|
||||||
|
= do tag 3; toBuf b a; toBuf b cs
|
||||||
toBuf b (Builtin a)
|
toBuf b (Builtin a)
|
||||||
= throw (InternalError "Trying to serialise a Builtin")
|
= throw (InternalError "Trying to serialise a Builtin")
|
||||||
toBuf b (DCon t arity) = do tag 3; toBuf b t; toBuf b arity
|
toBuf b (DCon t arity) = do tag 4; toBuf b t; toBuf b arity
|
||||||
toBuf b (TCon t arity parampos detpos ms datacons)
|
toBuf b (TCon t arity parampos detpos ms datacons)
|
||||||
= do tag 4; toBuf b t; toBuf b arity; toBuf b parampos
|
= do tag 5; toBuf b t; toBuf b arity; toBuf b parampos
|
||||||
toBuf b detpos; toBuf b ms; toBuf b datacons
|
toBuf b detpos; toBuf b ms; toBuf b datacons
|
||||||
toBuf b (Hole locs p)
|
toBuf b (Hole locs p)
|
||||||
= do tag 5; toBuf b locs; toBuf b p
|
= do tag 6; toBuf b locs; toBuf b p
|
||||||
toBuf b (BySearch c depth def)
|
toBuf b (BySearch c depth def)
|
||||||
= do tag 6; toBuf b c; toBuf b depth; toBuf b def
|
= do tag 7; toBuf b c; toBuf b depth; toBuf b def
|
||||||
toBuf b (Guess guess constraints) = do tag 7; toBuf b guess; toBuf b constraints
|
toBuf b (Guess guess constraints) = do tag 8; toBuf b guess; toBuf b constraints
|
||||||
toBuf b ImpBind = tag 8
|
toBuf b ImpBind = tag 9
|
||||||
toBuf b Delayed = tag 9
|
toBuf b Delayed = tag 10
|
||||||
|
|
||||||
fromBuf b
|
fromBuf b
|
||||||
= case !getTag of
|
= case !getTag of
|
||||||
@ -732,22 +762,25 @@ TTC Def where
|
|||||||
pure (PMDef False args ct rt pats)
|
pure (PMDef False args ct rt pats)
|
||||||
2 => do a <- fromBuf b
|
2 => do a <- fromBuf b
|
||||||
pure (ExternDef a)
|
pure (ExternDef a)
|
||||||
3 => do t <- fromBuf b; a <- fromBuf b
|
3 => do a <- fromBuf b
|
||||||
pure (DCon t a)
|
cs <- fromBuf b
|
||||||
|
pure (ForeignDef a cs)
|
||||||
4 => do t <- fromBuf b; a <- fromBuf b
|
4 => do t <- fromBuf b; a <- fromBuf b
|
||||||
|
pure (DCon t a)
|
||||||
|
5 => do t <- fromBuf b; a <- fromBuf b
|
||||||
ps <- fromBuf b; dets <- fromBuf b;
|
ps <- fromBuf b; dets <- fromBuf b;
|
||||||
ms <- fromBuf b; cs <- fromBuf b
|
ms <- fromBuf b; cs <- fromBuf b
|
||||||
pure (TCon t a ps dets ms cs)
|
pure (TCon t a ps dets ms cs)
|
||||||
5 => do l <- fromBuf b
|
6 => do l <- fromBuf b
|
||||||
p <- fromBuf b
|
p <- fromBuf b
|
||||||
pure (Hole l p)
|
pure (Hole l p)
|
||||||
6 => do c <- fromBuf b; depth <- fromBuf b
|
7 => do c <- fromBuf b; depth <- fromBuf b
|
||||||
def <- fromBuf b
|
def <- fromBuf b
|
||||||
pure (BySearch c depth def)
|
pure (BySearch c depth def)
|
||||||
7 => do g <- fromBuf b; cs <- fromBuf b
|
8 => do g <- fromBuf b; cs <- fromBuf b
|
||||||
pure (Guess g cs)
|
pure (Guess g cs)
|
||||||
8 => pure ImpBind
|
9 => pure ImpBind
|
||||||
9 => pure Context.Delayed
|
10 => pure Context.Delayed
|
||||||
_ => corrupt "Def"
|
_ => corrupt "Def"
|
||||||
|
|
||||||
TTC TotalReq where
|
TTC TotalReq where
|
||||||
|
@ -52,7 +52,7 @@ data CLOpt
|
|||||||
||| Whether or not to run in IdeMode (easily parsable for other tools)
|
||| Whether or not to run in IdeMode (easily parsable for other tools)
|
||||||
IdeMode |
|
IdeMode |
|
||||||
||| Whether or not to run IdeMode (using a socket instead of stdin/stdout)
|
||| Whether or not to run IdeMode (using a socket instead of stdin/stdout)
|
||||||
IdeModeSocket |
|
IdeModeSocket String |
|
||||||
||| Run as a checker for the core language TTImp
|
||| Run as a checker for the core language TTImp
|
||||||
Yaffle String |
|
Yaffle String |
|
||||||
Timing |
|
Timing |
|
||||||
@ -87,8 +87,11 @@ options = [MkOpt ["--check", "-c"] [] [CheckOnly]
|
|||||||
MkOpt ["--ide-mode"] [] [IdeMode]
|
MkOpt ["--ide-mode"] [] [IdeMode]
|
||||||
(Just "Run the REPL with machine-readable syntax"),
|
(Just "Run the REPL with machine-readable syntax"),
|
||||||
|
|
||||||
MkOpt ["--ide-mode-socket"] [] [IdeModeSocket]
|
MkOpt ["--ide-mode-socket"] [] [IdeModeSocket "localhost:38398"]
|
||||||
(Just "Run the ide socket mode"),
|
(Just "Run the ide socket mode on default host and port (localhost:38398"),
|
||||||
|
|
||||||
|
MkOpt ["--ide-mode-socket-with"] ["host:port"] (\hp => [IdeModeSocket hp])
|
||||||
|
(Just "Run the ide socket mode on given host and port"),
|
||||||
|
|
||||||
MkOpt ["--prefix"] [] [ShowPrefix]
|
MkOpt ["--prefix"] [] [ShowPrefix]
|
||||||
(Just "Show installation prefix"),
|
(Just "Show installation prefix"),
|
||||||
@ -182,3 +185,19 @@ getCmdOpts : IO (Either String (List CLOpt))
|
|||||||
getCmdOpts = do (_ :: opts) <- getArgs
|
getCmdOpts = do (_ :: opts) <- getArgs
|
||||||
| pure (Left "Invalid command line")
|
| pure (Left "Invalid command line")
|
||||||
pure $ getOpts opts
|
pure $ getOpts opts
|
||||||
|
|
||||||
|
portPart : String -> Maybe String
|
||||||
|
portPart p with (not $ p == "") proof prf
|
||||||
|
portPart p | False = Nothing
|
||||||
|
portPart p | True = Just $ strTail' p (sym prf)
|
||||||
|
|
||||||
|
||| Extract the host and port to bind the IDE socket to
|
||||||
|
public export
|
||||||
|
ideSocketModeHostPort : List CLOpt -> (String, Int)
|
||||||
|
ideSocketModeHostPort [] = ("localhost", 38398)
|
||||||
|
ideSocketModeHostPort (IdeModeSocket hp :: _) =
|
||||||
|
let (h, p) = Strings.break (== ':') hp
|
||||||
|
port = fromMaybe 38398 (portPart p >>= parsePositive)
|
||||||
|
host = if h == "" then "localhost" else h
|
||||||
|
in (host, port)
|
||||||
|
ideSocketModeHostPort (_ :: rest) = ideSocketModeHostPort rest
|
||||||
|
@ -464,18 +464,18 @@ mutual
|
|||||||
= Just (PNamespace fc ns (mapMaybe (getDecl p) ds))
|
= Just (PNamespace fc ns (mapMaybe (getDecl p) ds))
|
||||||
|
|
||||||
getDecl AsType d@(PClaim _ _ _ _ _) = Just d
|
getDecl AsType d@(PClaim _ _ _ _ _) = Just d
|
||||||
getDecl AsType (PData fc vis (MkPData dfc tyn tyc opts cons))
|
getDecl AsType (PData fc vis (MkPData dfc tyn tyc _ _))
|
||||||
= Just (PData fc vis (MkPLater dfc tyn tyc))
|
= Just (PData fc vis (MkPLater dfc tyn tyc))
|
||||||
getDecl AsType d@(PInterface fc vis cons n ps det cname ds) = Just d
|
getDecl AsType d@(PInterface _ _ _ _ _ _ _ _) = Just d
|
||||||
getDecl AsType d@(PRecord fc vis n ps con fs) = Just d
|
getDecl AsType d@(PRecord _ _ _ _ _ _) = Just d
|
||||||
getDecl AsType d@(PFixity _ _ _ _) = Just d
|
getDecl AsType d@(PFixity _ _ _ _) = Just d
|
||||||
getDecl AsType d@(PDirective _ _) = Just d
|
getDecl AsType d@(PDirective _ _) = Just d
|
||||||
getDecl AsType d = Nothing
|
getDecl AsType d = Nothing
|
||||||
|
|
||||||
getDecl AsDef (PClaim _ _ _ _ _) = Nothing
|
getDecl AsDef (PClaim _ _ _ _ _) = Nothing
|
||||||
getDecl AsDef d@(PData fc vis (MkPLater dfc tyn tyc)) = Just d
|
getDecl AsDef d@(PData _ _ (MkPLater _ _ _)) = Just d
|
||||||
getDecl AsDef (PInterface fc vis cons n ps det cname ds) = Nothing
|
getDecl AsDef (PInterface _ _ _ _ _ _ _ _) = Nothing
|
||||||
getDecl AsDef (PRecord fc vis n ps con fs) = Nothing
|
getDecl AsDef (PRecord _ _ _ _ _ _) = Nothing
|
||||||
getDecl AsDef (PFixity _ _ _ _) = Nothing
|
getDecl AsDef (PFixity _ _ _ _) = Nothing
|
||||||
getDecl AsDef (PDirective _ _) = Nothing
|
getDecl AsDef (PDirective _ _) = Nothing
|
||||||
getDecl AsDef d = Just d
|
getDecl AsDef d = Just d
|
||||||
@ -504,8 +504,8 @@ mutual
|
|||||||
where
|
where
|
||||||
getFn : RawImp -> Core Name
|
getFn : RawImp -> Core Name
|
||||||
getFn (IVar _ n) = pure n
|
getFn (IVar _ n) = pure n
|
||||||
getFn (IApp _ f a) = getFn f
|
getFn (IApp _ f _) = getFn f
|
||||||
getFn (IImplicitApp _ f _ a) = getFn f
|
getFn (IImplicitApp _ f _ _) = getFn f
|
||||||
getFn tm = throw (InternalError (show tm ++ " is not a function application"))
|
getFn tm = throw (InternalError (show tm ++ " is not a function application"))
|
||||||
|
|
||||||
toIDef : ImpClause -> Core ImpDecl
|
toIDef : ImpClause -> Core ImpDecl
|
||||||
@ -559,7 +559,7 @@ mutual
|
|||||||
-- is a bit of a hack, but it's necessary to build parent constraint
|
-- is a bit of a hack, but it's necessary to build parent constraint
|
||||||
-- chasing functions correctly
|
-- chasing functions correctly
|
||||||
pairToCons : PTerm -> List PTerm
|
pairToCons : PTerm -> List PTerm
|
||||||
pairToCons (PPair fc l r) = pairToCons l ++ pairToCons r
|
pairToCons (PPair _ l r) = pairToCons l ++ pairToCons r
|
||||||
pairToCons t = [t]
|
pairToCons t = [t]
|
||||||
|
|
||||||
expandConstraint : (Maybe Name, PTerm) -> List (Maybe Name, PTerm)
|
expandConstraint : (Maybe Name, PTerm) -> List (Maybe Name, PTerm)
|
||||||
|
143
src/Idris/IDEMode/Client.idr
Normal file
143
src/Idris/IDEMode/Client.idr
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
module Idris.IDEMode.Client
|
||||||
|
|
||||||
|
import Data.Primitives.Views
|
||||||
|
import System
|
||||||
|
import Idris.IDEMode.Commands
|
||||||
|
import Idris.IDEMode.Parser
|
||||||
|
import Idris.Socket
|
||||||
|
import Idris.Syntax
|
||||||
|
import Idris.REPL
|
||||||
|
import Idris.Socket.Data
|
||||||
|
import Idris.IDEMode.REPL
|
||||||
|
import Parser.Support
|
||||||
|
|
||||||
|
hexDigit : Int -> Char
|
||||||
|
hexDigit 0 = '0'
|
||||||
|
hexDigit 1 = '1'
|
||||||
|
hexDigit 2 = '2'
|
||||||
|
hexDigit 3 = '3'
|
||||||
|
hexDigit 4 = '4'
|
||||||
|
hexDigit 5 = '5'
|
||||||
|
hexDigit 6 = '6'
|
||||||
|
hexDigit 7 = '7'
|
||||||
|
hexDigit 8 = '8'
|
||||||
|
hexDigit 9 = '9'
|
||||||
|
hexDigit 10 = 'a'
|
||||||
|
hexDigit 11 = 'b'
|
||||||
|
hexDigit 12 = 'c'
|
||||||
|
hexDigit 13 = 'd'
|
||||||
|
hexDigit 14 = 'e'
|
||||||
|
hexDigit 15 = 'f'
|
||||||
|
|
||||||
|
||| Convert a positive integer into a list of (lower case) hexadecimal characters
|
||||||
|
asHex : Int -> String
|
||||||
|
asHex n = pack $ asHex' n []
|
||||||
|
where
|
||||||
|
asHex' : Int -> List Char -> List Char
|
||||||
|
asHex' 0 hex = hex
|
||||||
|
asHex' n hex with (n `divides` 16)
|
||||||
|
asHex' (16 * div + rem) hex | DivBy {div} {rem} _ = asHex' div (hexDigit rem :: hex)
|
||||||
|
|
||||||
|
connectTo : String -> Int -> IO (Either String Socket)
|
||||||
|
connectTo host port = do
|
||||||
|
osock <- socket AF_INET Stream 0
|
||||||
|
case osock of
|
||||||
|
Left fail => do
|
||||||
|
pure $ Left ("Failed to open client socket " ++ show fail)
|
||||||
|
Right sock => do
|
||||||
|
res <- connect sock (Hostname host) port
|
||||||
|
if res /= 0
|
||||||
|
then pure $ Left ("Failed to connect to :" ++ host ++ ":" ++ show port ++", " ++ show res)
|
||||||
|
else pure (Right sock)
|
||||||
|
|
||||||
|
||| Runs an ide-mode client to execute one command against a given server
|
||||||
|
serialize : IDECommand -> Maybe String
|
||||||
|
serialize cmd =
|
||||||
|
let scmd = show $ SExpList [ toSExp cmd, toSExp 1 ]
|
||||||
|
hexLen = asHex $ cast $ Strings.length scmd
|
||||||
|
len = case isLTE (length hexLen) 6 of
|
||||||
|
(Yes _) => Just $ cast (replicate (6 - length hexLen) '0') ++ hexLen
|
||||||
|
(No _) => Nothing
|
||||||
|
in (++) <$> len <*> Just scmd
|
||||||
|
|
||||||
|
|
||||||
|
readOutput : Socket -> IO (Either String SExp)
|
||||||
|
readOutput sock = do
|
||||||
|
Right (len, _) <- recv sock 6 | Left err => pure (Left $ "failed to read from socket, error: " ++ show err)
|
||||||
|
case toHex 1 (reverse $ cast len) of
|
||||||
|
Nothing => pure $ Left ("expected a length in six-digits hexadecimal, got " ++ len)
|
||||||
|
Just num => do
|
||||||
|
Right (msg, _) <- recv sock num | Left err => pure (Left $ "failed to read from socket, error: " ++ show err)
|
||||||
|
pure $ either (Left . show) Right $ parseSExp msg
|
||||||
|
|
||||||
|
data IDEResult : Type where
|
||||||
|
IDEReturn : List SExp -> IDEResult
|
||||||
|
NetworkError : String -> IDEResult
|
||||||
|
InputError : String -> IDEResult
|
||||||
|
OutputError : String -> IDEResult
|
||||||
|
|
||||||
|
implementation Show IDEResult where
|
||||||
|
show (IDEReturn exprs) = unlines $ map show exprs
|
||||||
|
show (NetworkError reason) = reason
|
||||||
|
show (InputError reason) = reason
|
||||||
|
show (OutputError reason) = reason
|
||||||
|
|
||||||
|
|
||||||
|
readResult: Socket -> List SExp -> IO IDEResult
|
||||||
|
readResult sock outputs = do
|
||||||
|
Right output <- readOutput sock | Left err => pure (OutputError err)
|
||||||
|
case output of
|
||||||
|
SExpList (SymbolAtom "return" :: rest) => pure (IDEReturn (SExpList rest :: outputs))
|
||||||
|
res => do
|
||||||
|
readResult sock (res :: outputs)
|
||||||
|
|
||||||
|
execute : Socket -> IDECommand -> IO IDEResult
|
||||||
|
execute cnx command = do
|
||||||
|
let cmdString = serialize command
|
||||||
|
case cmdString of
|
||||||
|
Just cmd => do
|
||||||
|
Right sent <- send cnx cmd
|
||||||
|
| Left err => pure (NetworkError ("Failed to send command, error: " ++ show err))
|
||||||
|
readResult cnx []
|
||||||
|
Nothing => pure $ InputError "Command is too long"
|
||||||
|
|
||||||
|
connect : String -> Int -> IO Socket
|
||||||
|
connect host port = do
|
||||||
|
Right sock <- connectTo host port
|
||||||
|
| Left fail => do
|
||||||
|
putStrLn $ "fail to connect to " ++ host ++ ":" ++ show port ++", error: " ++ fail
|
||||||
|
exit 1
|
||||||
|
pure sock
|
||||||
|
|
||||||
|
makeIDECommand : REPLCmd -> Either String IDECommand
|
||||||
|
makeIDECommand (Eval term) = Right $ Interpret (show term)
|
||||||
|
makeIDECommand (Check term) = Right $ TypeOf (show term) Nothing
|
||||||
|
makeIDECommand (Load file) = Right $ LoadFile file Nothing
|
||||||
|
makeIDECommand (Editing (TypeAt line col name)) = Right $ TypeOf (show name) (Just (cast line, cast col))
|
||||||
|
makeIDECommand other = Left "Don't know how to interpret command"
|
||||||
|
|
||||||
|
parseCommand : String -> Either String IDECommand
|
||||||
|
parseCommand = either (Left . show) makeIDECommand . parseRepl
|
||||||
|
|
||||||
|
repl : Socket -> IO ()
|
||||||
|
repl cnx
|
||||||
|
= do putStr prompt
|
||||||
|
Right input <- map parseCommand getLine
|
||||||
|
| Left err => do
|
||||||
|
putStrLn err
|
||||||
|
repl cnx
|
||||||
|
end <- fEOF stdin
|
||||||
|
if end
|
||||||
|
then putStrLn "Bye!"
|
||||||
|
else do
|
||||||
|
result <- execute cnx input
|
||||||
|
putStrLn $ show result
|
||||||
|
repl cnx
|
||||||
|
|
||||||
|
where
|
||||||
|
prompt : String
|
||||||
|
prompt = "λ> "
|
||||||
|
|
||||||
|
export
|
||||||
|
client : String -> Int -> IO ()
|
||||||
|
client host port = connect host port >>= repl
|
@ -125,6 +125,10 @@ public export
|
|||||||
interface SExpable a where
|
interface SExpable a where
|
||||||
toSExp : a -> SExp
|
toSExp : a -> SExp
|
||||||
|
|
||||||
|
export
|
||||||
|
SExpable IDECommand where
|
||||||
|
toSExp = putIDECommand
|
||||||
|
|
||||||
export
|
export
|
||||||
SExpable SExp where
|
SExpable SExp where
|
||||||
toSExp = id
|
toSExp = id
|
||||||
|
@ -43,10 +43,10 @@ socketToFile (MkSocket f _ _ _) = do
|
|||||||
if !(ferror file) then do
|
if !(ferror file) then do
|
||||||
pure (Left "Failed to fdopen socket file descriptor")
|
pure (Left "Failed to fdopen socket file descriptor")
|
||||||
else pure (Right file)
|
else pure (Right file)
|
||||||
|
|
||||||
export
|
export
|
||||||
initIDESocketFile : Int -> IO (Either String File)
|
initIDESocketFile : String -> Int -> IO (Either String File)
|
||||||
initIDESocketFile p = do
|
initIDESocketFile h p = do
|
||||||
osock <- socket AF_INET Stream 0
|
osock <- socket AF_INET Stream 0
|
||||||
case osock of
|
case osock of
|
||||||
Left fail => do
|
Left fail => do
|
||||||
@ -54,9 +54,9 @@ initIDESocketFile p = do
|
|||||||
putStrLn "Failed to open socket"
|
putStrLn "Failed to open socket"
|
||||||
exit 1
|
exit 1
|
||||||
Right sock => do
|
Right sock => do
|
||||||
res <- bind sock (Just (Hostname "localhost")) p
|
res <- bind sock (Just (Hostname h)) p
|
||||||
if res /= 0
|
if res /= 0
|
||||||
then
|
then
|
||||||
pure (Left ("Failed to bind socket with error: " ++ show res))
|
pure (Left ("Failed to bind socket with error: " ++ show res))
|
||||||
else do
|
else do
|
||||||
res <- listen sock
|
res <- listen sock
|
||||||
@ -66,11 +66,11 @@ initIDESocketFile p = do
|
|||||||
else do
|
else do
|
||||||
putStrLn (show p)
|
putStrLn (show p)
|
||||||
res <- accept sock
|
res <- accept sock
|
||||||
case res of
|
case res of
|
||||||
Left err =>
|
Left err =>
|
||||||
pure (Left ("Failed to accept on socket with error: " ++ show err))
|
pure (Left ("Failed to accept on socket with error: " ++ show err))
|
||||||
Right (s, _) =>
|
Right (s, _) =>
|
||||||
socketToFile s
|
socketToFile s
|
||||||
|
|
||||||
getChar : File -> IO Char
|
getChar : File -> IO Char
|
||||||
getChar (FHandle h) = do
|
getChar (FHandle h) = do
|
||||||
@ -83,7 +83,7 @@ getChar (FHandle h) = do
|
|||||||
putStrLn "Failed to read a character"
|
putStrLn "Failed to read a character"
|
||||||
exit 1
|
exit 1
|
||||||
else pure chr
|
else pure chr
|
||||||
|
|
||||||
getFLine : File -> IO String
|
getFLine : File -> IO String
|
||||||
getFLine (FHandle h) = do
|
getFLine (FHandle h) = do
|
||||||
str <- prim_fread h
|
str <- prim_fread h
|
||||||
@ -95,7 +95,7 @@ getFLine (FHandle h) = do
|
|||||||
getNChars : File -> Nat -> IO (List Char)
|
getNChars : File -> Nat -> IO (List Char)
|
||||||
getNChars i Z = pure []
|
getNChars i Z = pure []
|
||||||
getNChars i (S k)
|
getNChars i (S k)
|
||||||
= do x <- getChar i
|
= do x <- getChar i
|
||||||
xs <- getNChars i k
|
xs <- getNChars i k
|
||||||
pure (x :: xs)
|
pure (x :: xs)
|
||||||
|
|
||||||
@ -117,12 +117,14 @@ hex 'd' = Just 13
|
|||||||
hex 'e' = Just 14
|
hex 'e' = Just 14
|
||||||
hex 'f' = Just 15
|
hex 'f' = Just 15
|
||||||
hex _ = Nothing
|
hex _ = Nothing
|
||||||
|
|
||||||
|
export
|
||||||
toHex : Int -> List Char -> Maybe Int
|
toHex : Int -> List Char -> Maybe Int
|
||||||
toHex _ [] = Just 0
|
toHex _ [] = Just 0
|
||||||
toHex m (d :: ds)
|
toHex m (d :: ds)
|
||||||
= pure $ !(hex (toLower d)) * m + !(toHex (m*16) ds)
|
= pure $ !(hex (toLower d)) * m + !(toHex (m*16) ds)
|
||||||
|
|
||||||
|
|
||||||
-- Read 6 characters. If they're a hex number, read that many characters.
|
-- Read 6 characters. If they're a hex number, read that many characters.
|
||||||
-- Otherwise, just read to newline
|
-- Otherwise, just read to newline
|
||||||
getInput : File -> IO String
|
getInput : File -> IO String
|
||||||
@ -145,7 +147,7 @@ process : {auto c : Ref Ctxt Defs} ->
|
|||||||
process (Interpret cmd)
|
process (Interpret cmd)
|
||||||
= do interpret cmd
|
= do interpret cmd
|
||||||
printResult "Done"
|
printResult "Done"
|
||||||
process (LoadFile fname toline)
|
process (LoadFile fname toline)
|
||||||
= do opts <- get ROpts
|
= do opts <- get ROpts
|
||||||
put ROpts (record { mainfile = Just fname } opts)
|
put ROpts (record { mainfile = Just fname } opts)
|
||||||
resetContext
|
resetContext
|
||||||
@ -157,7 +159,7 @@ process (LoadFile fname toline)
|
|||||||
case errs of
|
case errs of
|
||||||
[] => printResult $ "Loaded " ++ fname
|
[] => printResult $ "Loaded " ++ fname
|
||||||
_ => printError $ "Failed to load " ++ fname
|
_ => printError $ "Failed to load " ++ fname
|
||||||
process (TypeOf n Nothing)
|
process (TypeOf n Nothing)
|
||||||
= do Idris.REPL.process (Check (PRef replFC (UN n)))
|
= do Idris.REPL.process (Check (PRef replFC (UN n)))
|
||||||
pure ()
|
pure ()
|
||||||
process (TypeOf n (Just (l, c)))
|
process (TypeOf n (Just (l, c)))
|
||||||
@ -170,7 +172,7 @@ process (AddClause l n)
|
|||||||
= do Idris.REPL.process (Editing (AddClause (fromInteger l) (UN n)))
|
= do Idris.REPL.process (Editing (AddClause (fromInteger l) (UN n)))
|
||||||
pure ()
|
pure ()
|
||||||
process (ExprSearch l n hs all)
|
process (ExprSearch l n hs all)
|
||||||
= do Idris.REPL.process (Editing (ExprSearch (fromInteger l) (UN n)
|
= do Idris.REPL.process (Editing (ExprSearch (fromInteger l) (UN n)
|
||||||
(map UN hs) all))
|
(map UN hs) all))
|
||||||
pure ()
|
pure ()
|
||||||
process (GenerateDef l n)
|
process (GenerateDef l n)
|
||||||
@ -208,7 +210,7 @@ processCatch cmd
|
|||||||
put ROpts o'
|
put ROpts o'
|
||||||
emitError err
|
emitError err
|
||||||
printError "Command failed")
|
printError "Command failed")
|
||||||
|
|
||||||
loop : {auto c : Ref Ctxt Defs} ->
|
loop : {auto c : Ref Ctxt Defs} ->
|
||||||
{auto u : Ref UST UState} ->
|
{auto u : Ref UST UState} ->
|
||||||
{auto s : Ref Syn SyntaxInfo} ->
|
{auto s : Ref Syn SyntaxInfo} ->
|
||||||
@ -216,7 +218,7 @@ loop : {auto c : Ref Ctxt Defs} ->
|
|||||||
{auto o : Ref ROpts REPLOpts} ->
|
{auto o : Ref ROpts REPLOpts} ->
|
||||||
Core ()
|
Core ()
|
||||||
loop
|
loop
|
||||||
= do res <- getOutput
|
= do res <- getOutput
|
||||||
case res of
|
case res of
|
||||||
REPL _ => printError "Running idemode but output isn't"
|
REPL _ => printError "Running idemode but output isn't"
|
||||||
IDEMode _ inf outf => do
|
IDEMode _ inf outf => do
|
||||||
@ -229,11 +231,11 @@ loop
|
|||||||
loop
|
loop
|
||||||
Right sexp =>
|
Right sexp =>
|
||||||
case getMsg sexp of
|
case getMsg sexp of
|
||||||
Just (cmd, i) =>
|
Just (cmd, i) =>
|
||||||
do updateOutput i
|
do updateOutput i
|
||||||
processCatch cmd
|
processCatch cmd
|
||||||
loop
|
loop
|
||||||
Nothing =>
|
Nothing =>
|
||||||
do printError ("Unrecognised command: " ++ show sexp)
|
do printError ("Unrecognised command: " ++ show sexp)
|
||||||
loop
|
loop
|
||||||
where
|
where
|
||||||
@ -257,4 +259,3 @@ replIDE
|
|||||||
IDEMode _ inf outf => do
|
IDEMode _ inf outf => do
|
||||||
send outf (version 2 0)
|
send outf (version 2 0)
|
||||||
loop
|
loop
|
||||||
|
|
||||||
|
@ -144,7 +144,8 @@ stMain opts
|
|||||||
setOutput (IDEMode 0 stdin stdout)
|
setOutput (IDEMode 0 stdin stdout)
|
||||||
replIDE {c} {u} {m}
|
replIDE {c} {u} {m}
|
||||||
else do
|
else do
|
||||||
f <- coreLift $ initIDESocketFile 38398
|
let (host, port) = ideSocketModeHostPort opts
|
||||||
|
f <- coreLift $ initIDESocketFile host port
|
||||||
case f of
|
case f of
|
||||||
Left err => do
|
Left err => do
|
||||||
coreLift $ putStrLn err
|
coreLift $ putStrLn err
|
||||||
|
@ -234,9 +234,9 @@ installFrom : {auto c : Ref Ctxt Defs} ->
|
|||||||
String -> String -> String -> List String -> Core ()
|
String -> String -> String -> List String -> Core ()
|
||||||
installFrom _ _ _ [] = pure ()
|
installFrom _ _ _ [] = pure ()
|
||||||
installFrom pname builddir destdir ns@(m :: dns)
|
installFrom pname builddir destdir ns@(m :: dns)
|
||||||
= do let ttcfile = showSep "/" (reverse ns)
|
= do let ttcfile = showSep dirSep (reverse ns)
|
||||||
let ttcPath = builddir ++ dirSep ++ ttcfile ++ ".ttc"
|
let ttcPath = builddir ++ dirSep ++ "ttc" ++ dirSep ++ ttcfile ++ ".ttc"
|
||||||
let destPath = destdir ++ dirSep ++ showSep "/" (reverse dns)
|
let destPath = destdir ++ dirSep ++ showSep dirSep (reverse dns)
|
||||||
let destFile = destdir ++ dirSep ++ ttcfile ++ ".ttc"
|
let destFile = destdir ++ dirSep ++ ttcfile ++ ".ttc"
|
||||||
Right _ <- coreLift $ mkdirs (reverse dns)
|
Right _ <- coreLift $ mkdirs (reverse dns)
|
||||||
| Left err => throw (FileErr pname err)
|
| Left err => throw (FileErr pname err)
|
||||||
|
@ -1024,6 +1024,9 @@ fnDirectOpt
|
|||||||
pure Inline
|
pure Inline
|
||||||
<|> do exactIdent "extern"
|
<|> do exactIdent "extern"
|
||||||
pure ExternFn
|
pure ExternFn
|
||||||
|
<|> do exactIdent "foreign"
|
||||||
|
cs <- many strLit
|
||||||
|
pure (ForeignFn cs)
|
||||||
|
|
||||||
visOpt : Rule (Either Visibility FnOpt)
|
visOpt : Rule (Either Visibility FnOpt)
|
||||||
visOpt
|
visOpt
|
||||||
|
@ -87,7 +87,7 @@ updateErrorLine : {auto o : Ref ROpts REPLOpts} ->
|
|||||||
updateErrorLine []
|
updateErrorLine []
|
||||||
= do opts <- get ROpts
|
= do opts <- get ROpts
|
||||||
put ROpts (record { errorLine = Nothing } opts)
|
put ROpts (record { errorLine = Nothing } opts)
|
||||||
updateErrorLine (e :: es)
|
updateErrorLine (e :: _)
|
||||||
= do opts <- get ROpts
|
= do opts <- get ROpts
|
||||||
put ROpts (record { errorLine = map getFCLine (getErrorLoc e) } opts)
|
put ROpts (record { errorLine = map getFCLine (getErrorLoc e) } opts)
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ addPkgDir : {auto c : Ref Ctxt Defs} ->
|
|||||||
String -> Core ()
|
String -> Core ()
|
||||||
addPkgDir p
|
addPkgDir p
|
||||||
= do defs <- get Ctxt
|
= do defs <- get Ctxt
|
||||||
addExtraDir (dir_prefix (dirs (options defs)) ++ dirSep ++
|
addExtraDir (dir_prefix (dirs (options defs)) ++ dirSep ++
|
||||||
"idris2" ++ dirSep ++ p)
|
"idris2" ++ dirSep ++ p)
|
||||||
|
|
||||||
-- Options to be processed before type checking
|
-- Options to be processed before type checking
|
||||||
@ -37,7 +37,7 @@ preOptions (SetCG e :: opts)
|
|||||||
= case getCG e of
|
= case getCG e of
|
||||||
Just cg => do setCG cg
|
Just cg => do setCG cg
|
||||||
preOptions opts
|
preOptions opts
|
||||||
Nothing =>
|
Nothing =>
|
||||||
do coreLift $ putStrLn "No such code generator"
|
do coreLift $ putStrLn "No such code generator"
|
||||||
coreLift $ putStrLn $ "Code generators available: " ++
|
coreLift $ putStrLn $ "Code generators available: " ++
|
||||||
showSep ", " (map fst availableCGs)
|
showSep ", " (map fst availableCGs)
|
||||||
@ -63,11 +63,11 @@ postOptions (OutputFile outfile :: rest)
|
|||||||
= do compileExp (PRef (MkFC "(script)" (0, 0) (0, 0)) (UN "main")) outfile
|
= do compileExp (PRef (MkFC "(script)" (0, 0) (0, 0)) (UN "main")) outfile
|
||||||
postOptions rest
|
postOptions rest
|
||||||
pure False
|
pure False
|
||||||
postOptions (ExecFn str :: rest)
|
postOptions (ExecFn str :: rest)
|
||||||
= do execExp (PRef (MkFC "(script)" (0, 0) (0, 0)) (UN str))
|
= do execExp (PRef (MkFC "(script)" (0, 0) (0, 0)) (UN str))
|
||||||
postOptions rest
|
postOptions rest
|
||||||
pure False
|
pure False
|
||||||
postOptions (CheckOnly :: rest)
|
postOptions (CheckOnly :: rest)
|
||||||
= do postOptions rest
|
= do postOptions rest
|
||||||
pure False
|
pure False
|
||||||
postOptions (_ :: rest) = postOptions rest
|
postOptions (_ :: rest) = postOptions rest
|
||||||
@ -81,6 +81,5 @@ ideMode (_ :: xs) = ideMode xs
|
|||||||
export
|
export
|
||||||
ideModeSocket : List CLOpt -> Bool
|
ideModeSocket : List CLOpt -> Bool
|
||||||
ideModeSocket [] = False
|
ideModeSocket [] = False
|
||||||
ideModeSocket (IdeModeSocket :: _) = True
|
ideModeSocket (IdeModeSocket _ :: _) = True
|
||||||
ideModeSocket (_ :: xs) = ideModeSocket xs
|
ideModeSocket (_ :: xs) = ideModeSocket xs
|
||||||
|
|
||||||
|
@ -30,8 +30,8 @@ Show Token where
|
|||||||
show (Symbol x) = "symbol " ++ x
|
show (Symbol x) = "symbol " ++ x
|
||||||
show (Keyword x) = x
|
show (Keyword x) = x
|
||||||
show (Unrecognised x) = "Unrecognised " ++ x
|
show (Unrecognised x) = "Unrecognised " ++ x
|
||||||
show (Comment x) = "comment"
|
show (Comment _) = "comment"
|
||||||
show (DocComment x) = "doc comment"
|
show (DocComment _) = "doc comment"
|
||||||
show (CGDirective x) = "CGDirective " ++ x
|
show (CGDirective x) = "CGDirective " ++ x
|
||||||
show EndInput = "end of input"
|
show EndInput = "end of input"
|
||||||
|
|
||||||
|
@ -10,9 +10,6 @@ import Control.Monad.State
|
|||||||
|
|
||||||
%default covering
|
%default covering
|
||||||
|
|
||||||
getUnique : List String -> String -> String
|
|
||||||
getUnique xs x = if x `elem` xs then getUnique xs (x ++ "'") else x
|
|
||||||
|
|
||||||
-- Rename the IBindVars in a term. Anything which appears in the list 'renames'
|
-- Rename the IBindVars in a term. Anything which appears in the list 'renames'
|
||||||
-- should be renamed, to something which is *not* in the list 'used'
|
-- should be renamed, to something which is *not* in the list 'used'
|
||||||
export
|
export
|
||||||
|
@ -17,6 +17,8 @@ import TTImp.TTImp
|
|||||||
|
|
||||||
import Data.NameMap
|
import Data.NameMap
|
||||||
|
|
||||||
|
%default covering
|
||||||
|
|
||||||
getRetTy : Defs -> NF [] -> Core Name
|
getRetTy : Defs -> NF [] -> Core Name
|
||||||
getRetTy defs (NBind fc _ (Pi _ _ _) sc)
|
getRetTy defs (NBind fc _ (Pi _ _ _) sc)
|
||||||
= getRetTy defs !(sc defs (toClosure defaultOpts [] (Erased fc)))
|
= getRetTy defs !(sc defs (toClosure defaultOpts [] (Erased fc)))
|
||||||
@ -39,6 +41,8 @@ processFnOpt fc ndef (GlobalHint a)
|
|||||||
= addGlobalHint ndef a
|
= addGlobalHint ndef a
|
||||||
processFnOpt fc ndef ExternFn
|
processFnOpt fc ndef ExternFn
|
||||||
= setFlag fc ndef Inline -- if externally defined, inline when compiling
|
= setFlag fc ndef Inline -- if externally defined, inline when compiling
|
||||||
|
processFnOpt fc ndef (ForeignFn _)
|
||||||
|
= setFlag fc ndef Inline -- if externally defined, inline when compiling
|
||||||
processFnOpt fc ndef Invertible
|
processFnOpt fc ndef Invertible
|
||||||
= setFlag fc ndef Invertible
|
= setFlag fc ndef Invertible
|
||||||
processFnOpt fc ndef Total
|
processFnOpt fc ndef Total
|
||||||
@ -48,6 +52,25 @@ processFnOpt fc ndef Covering
|
|||||||
processFnOpt fc ndef PartialOK
|
processFnOpt fc ndef PartialOK
|
||||||
= setFlag fc ndef (SetTotal PartialOK)
|
= setFlag fc ndef (SetTotal PartialOK)
|
||||||
|
|
||||||
|
-- If it's declared as externally defined, set the definition to
|
||||||
|
-- ExternFn <arity>, where the arity is assumed to be fixed (i.e.
|
||||||
|
-- not dependent on any of the arguments)
|
||||||
|
-- Similarly set foreign definitions. Possibly combine these?
|
||||||
|
initDef : {auto c : Ref Ctxt Defs} ->
|
||||||
|
Name -> Env Term vars -> Term vars -> List FnOpt -> Core Def
|
||||||
|
initDef n env ty []
|
||||||
|
= do addUserHole n
|
||||||
|
pure None
|
||||||
|
initDef n env ty (ExternFn :: opts)
|
||||||
|
= do defs <- get Ctxt
|
||||||
|
a <- getArity defs env ty
|
||||||
|
pure (ExternDef a)
|
||||||
|
initDef n env ty (ForeignFn cs :: opts)
|
||||||
|
= do defs <- get Ctxt
|
||||||
|
a <- getArity defs env ty
|
||||||
|
pure (ForeignDef a cs)
|
||||||
|
initDef n env ty (_ :: opts) = initDef n env ty opts
|
||||||
|
|
||||||
export
|
export
|
||||||
processType : {vars : _} ->
|
processType : {vars : _} ->
|
||||||
{auto c : Ref Ctxt Defs} ->
|
{auto c : Ref Ctxt Defs} ->
|
||||||
@ -76,16 +99,8 @@ processType {vars} eopts nest env fc rig vis opts (MkImpTy tfc n_in ty_raw)
|
|||||||
(gType fc)
|
(gType fc)
|
||||||
logTermNF 5 ("Type of " ++ show n) [] (abstractEnvType tfc env ty)
|
logTermNF 5 ("Type of " ++ show n) [] (abstractEnvType tfc env ty)
|
||||||
-- TODO: Check name visibility
|
-- TODO: Check name visibility
|
||||||
-- If it's declared as externally defined, set the definition to
|
|
||||||
-- ExternFn <arity>, where the arity is assumed to be fixed (i.e.
|
|
||||||
-- not dependent on any of the arguments)
|
|
||||||
def <- if ExternFn `elem` opts
|
|
||||||
then do defs <- get Ctxt
|
|
||||||
a <- getArity defs env ty
|
|
||||||
pure (ExternDef a)
|
|
||||||
else do addUserHole n
|
|
||||||
pure None
|
|
||||||
|
|
||||||
|
def <- initDef n env ty opts
|
||||||
addDef (Resolved idx) (newDef fc n rig vars (abstractEnvType tfc env ty) vis def)
|
addDef (Resolved idx) (newDef fc n rig vars (abstractEnvType tfc env ty) vis def)
|
||||||
-- Flag it as checked, because we're going to check the clauses
|
-- Flag it as checked, because we're going to check the clauses
|
||||||
-- from the top level.
|
-- from the top level.
|
||||||
|
@ -163,6 +163,8 @@ mutual
|
|||||||
-- Flag means to use as a default if all else fails
|
-- Flag means to use as a default if all else fails
|
||||||
GlobalHint : Bool -> FnOpt
|
GlobalHint : Bool -> FnOpt
|
||||||
ExternFn : FnOpt
|
ExternFn : FnOpt
|
||||||
|
-- Defined externally, list calling conventions
|
||||||
|
ForeignFn : List String -> FnOpt
|
||||||
-- assume safe to cancel arguments in unification
|
-- assume safe to cancel arguments in unification
|
||||||
Invertible : FnOpt
|
Invertible : FnOpt
|
||||||
Total : FnOpt
|
Total : FnOpt
|
||||||
@ -175,6 +177,7 @@ mutual
|
|||||||
show (Hint t) = "%hint " ++ show t
|
show (Hint t) = "%hint " ++ show t
|
||||||
show (GlobalHint t) = "%globalhint " ++ show t
|
show (GlobalHint t) = "%globalhint " ++ show t
|
||||||
show ExternFn = "%extern"
|
show ExternFn = "%extern"
|
||||||
|
show (ForeignFn cs) = "%foreign " ++ showSep " " (map show cs)
|
||||||
show Invertible = "%invertible"
|
show Invertible = "%invertible"
|
||||||
show Total = "total"
|
show Total = "total"
|
||||||
show Covering = "covering"
|
show Covering = "covering"
|
||||||
@ -186,6 +189,7 @@ mutual
|
|||||||
(Hint x) == (Hint y) = x == y
|
(Hint x) == (Hint y) = x == y
|
||||||
(GlobalHint x) == (GlobalHint y) = x == y
|
(GlobalHint x) == (GlobalHint y) = x == y
|
||||||
ExternFn == ExternFn = True
|
ExternFn == ExternFn = True
|
||||||
|
(ForeignFn xs) == (ForeignFn ys) = xs == ys
|
||||||
Invertible == Invertible = True
|
Invertible == Invertible = True
|
||||||
Total == Total = True
|
Total == Total = True
|
||||||
Covering == Covering = True
|
Covering == Covering = True
|
||||||
@ -789,10 +793,11 @@ mutual
|
|||||||
toBuf b (Hint t) = do tag 1; toBuf b t
|
toBuf b (Hint t) = do tag 1; toBuf b t
|
||||||
toBuf b (GlobalHint t) = do tag 2; toBuf b t
|
toBuf b (GlobalHint t) = do tag 2; toBuf b t
|
||||||
toBuf b ExternFn = tag 3
|
toBuf b ExternFn = tag 3
|
||||||
toBuf b Invertible = tag 4
|
toBuf b (ForeignFn cs) = do tag 4; toBuf b cs
|
||||||
toBuf b Total = tag 5
|
toBuf b Invertible = tag 5
|
||||||
toBuf b Covering = tag 6
|
toBuf b Total = tag 6
|
||||||
toBuf b PartialOK = tag 7
|
toBuf b Covering = tag 7
|
||||||
|
toBuf b PartialOK = tag 8
|
||||||
|
|
||||||
fromBuf b
|
fromBuf b
|
||||||
= case !getTag of
|
= case !getTag of
|
||||||
@ -800,10 +805,11 @@ mutual
|
|||||||
1 => do t <- fromBuf b; pure (Hint t)
|
1 => do t <- fromBuf b; pure (Hint t)
|
||||||
2 => do t <- fromBuf b; pure (GlobalHint t)
|
2 => do t <- fromBuf b; pure (GlobalHint t)
|
||||||
3 => pure ExternFn
|
3 => pure ExternFn
|
||||||
4 => pure Invertible
|
4 => do cs <- fromBuf b; pure (ForeignFn cs)
|
||||||
5 => pure Total
|
5 => pure Invertible
|
||||||
6 => pure Covering
|
6 => pure Total
|
||||||
7 => pure PartialOK
|
7 => pure Covering
|
||||||
|
8 => pure PartialOK
|
||||||
_ => corrupt "FnOpt"
|
_ => corrupt "FnOpt"
|
||||||
|
|
||||||
export
|
export
|
||||||
|
@ -10,6 +10,7 @@ lowerFirst : String -> Bool
|
|||||||
lowerFirst "" = False
|
lowerFirst "" = False
|
||||||
lowerFirst str = assert_total (isLower (strHead str))
|
lowerFirst str = assert_total (isLower (strHead str))
|
||||||
|
|
||||||
|
export
|
||||||
getUnique : List String -> String -> String
|
getUnique : List String -> String -> String
|
||||||
getUnique xs x = if x `elem` xs then getUnique xs (x ++ "'") else x
|
getUnique xs x = if x `elem` xs then getUnique xs (x ++ "'") else x
|
||||||
|
|
||||||
|
@ -45,6 +45,7 @@
|
|||||||
(define blodwen-error-quit
|
(define blodwen-error-quit
|
||||||
(lambda (msg)
|
(lambda (msg)
|
||||||
(display msg)
|
(display msg)
|
||||||
|
(newline)
|
||||||
(exit 1)))
|
(exit 1)))
|
||||||
|
|
||||||
;; Buffers
|
;; Buffers
|
||||||
|
@ -45,6 +45,7 @@
|
|||||||
(define blodwen-error-quit
|
(define blodwen-error-quit
|
||||||
(lambda (msg)
|
(lambda (msg)
|
||||||
(display msg)
|
(display msg)
|
||||||
|
(newline)
|
||||||
(exit 1)))
|
(exit 1)))
|
||||||
|
|
||||||
;; Files: Much of the following adapted from idris-chez, thanks to Niklas
|
;; Files: Much of the following adapted from idris-chez, thanks to Niklas
|
||||||
|
@ -45,6 +45,7 @@
|
|||||||
(define blodwen-error-quit
|
(define blodwen-error-quit
|
||||||
(lambda (msg)
|
(lambda (msg)
|
||||||
(display msg)
|
(display msg)
|
||||||
|
(newline)
|
||||||
(exit 1)))
|
(exit 1)))
|
||||||
|
|
||||||
;; Files : Much of the following adapted from idris-chez, thanks to Niklas
|
;; Files : Much of the following adapted from idris-chez, thanks to Niklas
|
||||||
|
@ -66,7 +66,7 @@ chezTests
|
|||||||
|
|
||||||
ideModeTests : List String
|
ideModeTests : List String
|
||||||
ideModeTests
|
ideModeTests
|
||||||
= [ "ideMode002" ]
|
= [ "ideMode001", "ideMode002" ]
|
||||||
|
|
||||||
chdir : String -> IO Bool
|
chdir : String -> IO Bool
|
||||||
chdir dir
|
chdir dir
|
||||||
|
7
tests/ideMode/ideMode001/LocType.idr
Normal file
7
tests/ideMode/ideMode001/LocType.idr
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
data Vect : Nat -> Type -> Type where
|
||||||
|
Nil : Vect Z a
|
||||||
|
(::) : a -> Vect k a -> Vect (S k) a
|
||||||
|
|
||||||
|
append : Vect n a -> Vect m a -> Vect (n + m) a
|
||||||
|
append [] ys = ys
|
||||||
|
append (x :: xs) ys = x :: append xs ys
|
4
tests/ideMode/ideMode001/expected
Normal file
4
tests/ideMode/ideMode001/expected
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
000018(:protocol-version 2 0)
|
||||||
|
000038(:write-string "1/1: Building LocType (LocType.idr)" 1)
|
||||||
|
00002a(:return (:ok "Loaded LocType.idr" ()) 1)
|
||||||
|
Alas the file is done, aborting
|
1
tests/ideMode/ideMode001/input
Normal file
1
tests/ideMode/ideMode001/input
Normal file
@ -0,0 +1 @@
|
|||||||
|
00001e((:load-file "LocType.idr") 1)
|
3
tests/ideMode/ideMode001/run
Executable file
3
tests/ideMode/ideMode001/run
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
$1 --ide-mode < input
|
||||||
|
|
||||||
|
rm -rf build
|
@ -1,4 +1,4 @@
|
|||||||
$1 --yaffle Interp.yaff < input
|
$1 --yaffle Interp.yaff < input
|
||||||
$1 --yaffle build/Interp.ttc < input
|
$1 --yaffle build/ttc/Interp.ttc < input
|
||||||
|
|
||||||
rm -rf build
|
rm -rf build
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
$1 --yaffle Hole.yaff < input
|
$1 --yaffle Hole.yaff < input
|
||||||
$1 --yaffle build/Hole.ttc < input
|
$1 --yaffle build/ttc/Hole.ttc < input
|
||||||
|
|
||||||
rm -rf build
|
rm -rf build
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
$1 --yaffle Lazy.yaff < input
|
$1 --yaffle Lazy.yaff < input
|
||||||
$1 --yaffle LazyInf.yaff < input
|
$1 --yaffle LazyInf.yaff < input
|
||||||
$1 --yaffle build/LazyInf.ttc < input
|
$1 --yaffle build/ttc/LazyInf.ttc < input
|
||||||
|
|
||||||
rm -rf build
|
rm -rf build
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
$1 --yaffle Record.yaff < input
|
$1 --yaffle Record.yaff < input
|
||||||
$1 --yaffle build/Record.ttc < input
|
$1 --yaffle build/ttc/Record.ttc < input
|
||||||
|
|
||||||
rm -rf build
|
rm -rf build
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
$1 --yaffle Auto.yaff < input
|
$1 --yaffle Auto.yaff < input
|
||||||
$1 --yaffle build/Auto.ttc < input
|
$1 --yaffle build/ttc/Auto.ttc < input
|
||||||
|
|
||||||
rm -rf build
|
rm -rf build
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
$1 --yaffle FakeTC.yaff < input
|
$1 --yaffle FakeTC.yaff < input
|
||||||
$1 --yaffle build/FakeTC.ttc < input
|
$1 --yaffle build/ttc/FakeTC.ttc < input
|
||||||
|
|
||||||
rm -rf build
|
rm -rf build
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
$1 --yaffle Functor.yaff < input
|
$1 --yaffle Functor.yaff < input
|
||||||
$1 --yaffle build/Functor.ttc < input
|
$1 --yaffle build/ttc/Functor.ttc < input
|
||||||
|
|
||||||
rm -rf build
|
rm -rf build
|
||||||
|
Loading…
Reference in New Issue
Block a user