Skip to content

MercuryTechnologies/ghc-persistent-worker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ghc-persistent-worker

Persistent worker (compiler server) implementation. GHC persistent worker currently works with Buck2.

The system consists of three components.

  • ghc-persistent-worker-plugin: GHC frontend plugin. With this plugin installed, GHC runs as server that keeps receiving compilation requests. Input/Output interface is through stdin/stdout pipe, i.e. gets CLI arguments and environment variables through stdin, and then reports the compilation result back to stdout. After serving one request, it will reinitialize its state, but it can also retain sharable state between requests, such as loaded dynamic library and loaded byte code. What is shared throughout the whole running process will be customizable.
  • ghc-persistent-worker-server: Orchestrator daemon that spawns multiple GHC processes with ghc-persistent-server-plugin. The server manages a pool of GHCs and listen a Unix socket for getting the requests from the client, and distribute the works to the pool. Individual GHCs are connected with the server by stdin/stdout pipes.
  • ghc-persistent-worker-client: GHC Client. The CLI arguments of this client is identical to ordinary GHC and it sends those arguments to the server.

To start:

$ cabal install --lib ghc-persistent-worker-plugin
$ cabal run ghc-persistent-worker-server -- --ghc ~/repo/srcc/ghcHEAD/_build/stage1/bin/ghc --socket-path /tmp/ghc_server.ipc -n 10
$ GHC_PERSISTENT_WORKER_SOCKET=/tmp/ghc_server.ipc cabal run ghc-persistent-worker-client -- test/A.hs

(optionally, one can set --package-db (pkg_db_path). One can have multiple --package-db.)

About

persistent worker prototype

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published