forked from purescript/purescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPureScript.hs
More file actions
263 lines (240 loc) · 10.2 KB
/
PureScript.hs
File metadata and controls
263 lines (240 loc) · 10.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
-----------------------------------------------------------------------------
--
-- Module : Language.PureScript
-- Copyright : (c) 2013-14 Phil Freeman, (c) 2014 Gary Burgess, and other contributors
-- License : MIT
--
-- Maintainer : Phil Freeman <paf31@cantab.net>
-- Stability : experimental
-- Portability :
--
-- |
-- The main compiler module
--
-----------------------------------------------------------------------------
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE ScopedTypeVariables #-}
module Language.PureScript
( module P
, compile
, compile'
, RebuildPolicy(..)
, MakeActions(..)
, SupplyVar()
, Externs()
, make
, version
) where
import Data.Function (on)
import Data.List (sortBy, groupBy, intercalate)
import Data.Maybe (fromMaybe)
import Data.Time.Clock
import Data.Version (Version)
import qualified Data.Map as M
import qualified Data.Set as S
import Control.Applicative
import Control.Arrow ((&&&))
import Control.Monad
import Control.Monad.Error.Class (MonadError(..))
import Control.Monad.Reader
import Control.Monad.Writer
import Control.Monad.Supply.Class (fresh)
import Language.PureScript.AST as P
import Language.PureScript.Comments as P
import Language.PureScript.CodeGen.Externs (moduleToPs)
import Language.PureScript.DeadCodeElimination as P
import Language.PureScript.Environment as P
import Language.PureScript.Errors as P
import Language.PureScript.Kinds as P
import Language.PureScript.Linter as P
import Language.PureScript.ModuleDependencies as P
import Language.PureScript.Names as P
import Language.PureScript.Options as P
import Language.PureScript.Parser as P
import Language.PureScript.Pretty as P
import Language.PureScript.Renamer as P
import Language.PureScript.Sugar as P
import Control.Monad.Supply as P
import Language.PureScript.TypeChecker as P
import Language.PureScript.Types as P
import qualified Language.PureScript.Core as Core
import qualified Language.PureScript.CoreFn as CoreFn
import qualified Language.PureScript.Constants as C
import qualified Paths_purescript as Paths
-- |
-- Compile a collection of modules
--
-- The compilation pipeline proceeds as follows:
--
-- * Sort the modules based on module dependencies, checking for cyclic dependencies.
--
-- * Perform a set of desugaring passes.
--
-- * Type check, and elaborate values to include type annotations and type class dictionaries.
--
-- * Regroup values to take into account new value dependencies introduced by elaboration.
--
-- * Eliminate dead code.
--
-- * Generate Javascript, and perform optimization passes.
--
-- * Pretty-print the generated Javascript
--
compile :: (Functor m, Applicative m, MonadError MultipleErrors m, MonadWriter MultipleErrors m, MonadReader (Options Compile) m)
=> [Module] -> m ([Core.Module (CoreFn.Bind Core.Ann) ForeignCode], Environment, SupplyVar, Externs)
compile = compile' initEnvironment
compile' :: (Functor m, Applicative m, MonadError MultipleErrors m, MonadWriter MultipleErrors m, MonadReader (Options Compile) m)
=> Environment -> [Module] -> m ([Core.Module (CoreFn.Bind Core.Ann) ForeignCode], Environment, SupplyVar, Externs)
compile' env ms = do
noPrelude <- asks optionsNoPrelude
unless noPrelude (checkPreludeIsDefined ms)
additional <- asks optionsAdditional
mainModuleIdent <- asks (fmap moduleNameFromString . optionsMain)
(sorted, _) <- sortModules $ map importPrim $ if noPrelude then ms else map importPrelude ms
mapM_ lint sorted
(desugared, nextVar) <- runSupplyT 0 $ desugar sorted
(elaborated, env') <- runCheck' env $ forM desugared $ typeCheckModule mainModuleIdent
regrouped <- createBindingGroupsModule . collapseBindingGroupsModule $ elaborated
let corefn = map (CoreFn.moduleToCoreFn env') regrouped
entryPoints = moduleNameFromString `map` entryPointModules additional
elim = if null entryPoints then corefn else eliminateDeadCode entryPoints corefn
renamed = renameInModules elim
codeGenModuleNames = moduleNameFromString `map` codeGenModules additional
modulesToCodeGen = if null codeGenModuleNames then renamed else filter (\(Core.Module _ mn _ _ _ _) -> mn `elem` codeGenModuleNames) renamed
exts = intercalate "\n" . map (`moduleToPs` env') $ regrouped
return (modulesToCodeGen, env', nextVar, exts)
-- |
-- Actions that require implementations when running in "make" mode.
--
data MakeActions m = MakeActions {
-- |
-- Get the timestamp for the input file(s) for a module. If there are multiple
-- files (.purs and foreign files, for example) the timestamp should be for
-- the most recently modified file.
--
getInputTimestamp :: ModuleName -> m (Either RebuildPolicy (Maybe UTCTime))
-- |
-- Get the timestamp for the output files for a module. This should be the
-- timestamp for the oldest modified file, or Nothing if any of the required
-- output files are missing.
--
, getOutputTimestamp :: ModuleName -> m (Maybe UTCTime)
-- |
-- Read the externs file for a module as a string and also return the actual
-- path for the file.
, readExterns :: ModuleName -> m (FilePath, String)
-- |
-- Run the code generator for the module and write any required output files.
--
, codegen :: Core.Module (CoreFn.Bind Core.Ann) ForeignCode -> Environment -> SupplyVar -> Externs -> m ()
-- |
-- Respond to a progress update.
--
, progress :: String -> m ()
}
-- |
-- Generated code for an externs file.
--
type Externs = String
-- |
-- A value to be used in the Supply monad.
--
type SupplyVar = Integer
-- |
-- Determines when to rebuild a module
--
data RebuildPolicy
-- | Never rebuild this module
= RebuildNever
-- | Always rebuild this module
| RebuildAlways deriving (Show, Eq, Ord)
-- |
-- Compiles in "make" mode, compiling each module separately to a js files and an externs file
--
-- If timestamps have not changed, the externs file can be used to provide the module's types without
-- having to typecheck the module again.
--
make :: forall m. (Functor m, Applicative m, Monad m, MonadReader (P.Options P.Make) m, MonadError MultipleErrors m, MonadWriter MultipleErrors m)
=> MakeActions m
-> [(Either RebuildPolicy FilePath, Module)]
-> m Environment
make MakeActions{..} ms = do
noPrelude <- asks optionsNoPrelude
unless noPrelude (checkPreludeIsDefined (map snd ms))
(sorted, graph) <- sortModules $ map importPrim $ if noPrelude then map snd ms else map (importPrelude . snd) ms
mapM_ lint sorted
toRebuild <- foldM (\s (Module _ moduleName' _ _) -> do
inputTimestamp <- getInputTimestamp moduleName'
outputTimestamp <- getOutputTimestamp moduleName'
return $ case (inputTimestamp, outputTimestamp) of
(Right (Just t1), Just t2) | t1 < t2 -> s
(Left RebuildNever, Just _) -> s
_ -> S.insert moduleName' s) S.empty sorted
marked <- rebuildIfNecessary (reverseDependencies graph) toRebuild sorted
(desugared, nextVar) <- runSupplyT 0 $ zip (map fst marked) <$> desugar (map snd marked)
evalSupplyT nextVar $ go initEnvironment desugared
where
go :: Environment -> [(Bool, Module)] -> SupplyT m Environment
go env [] = return env
go env ((False, m) : ms') = do
(_, env') <- lift . runCheck' env $ typeCheckModule Nothing m
go env' ms'
go env ((True, m@(Module coms moduleName' _ exps)) : ms') = do
lift $ progress $ "Compiling " ++ runModuleName moduleName'
(Module _ _ elaborated _, env') <- lift . runCheck' env $ typeCheckModule Nothing m
regrouped <- createBindingGroups moduleName' . collapseBindingGroups $ elaborated
let mod' = Module coms moduleName' regrouped exps
corefn = CoreFn.moduleToCoreFn env' mod'
[renamed] = renameInModules [corefn]
exts = moduleToPs mod' env'
nextVar <- fresh
lift $ codegen renamed env' nextVar exts
go env' ms'
rebuildIfNecessary :: M.Map ModuleName [ModuleName] -> S.Set ModuleName -> [Module] -> m [(Bool, Module)]
rebuildIfNecessary _ _ [] = return []
rebuildIfNecessary graph toRebuild (m@(Module _ moduleName' _ _) : ms') | moduleName' `S.member` toRebuild = do
let deps = fromMaybe [] $ moduleName' `M.lookup` graph
toRebuild' = toRebuild `S.union` S.fromList deps
(:) (True, m) <$> rebuildIfNecessary graph toRebuild' ms'
rebuildIfNecessary graph toRebuild (Module _ moduleName' _ _ : ms') = do
(path, externs) <- readExterns moduleName'
externsModules <- fmap (map snd) . alterErrors $ P.parseModulesFromFiles id [(path, externs)]
case externsModules of
[m'@(Module _ moduleName'' _ _)] | moduleName'' == moduleName' -> (:) (False, m') <$> rebuildIfNecessary graph toRebuild ms'
_ -> throwError . errorMessage . InvalidExternsFile $ path
where
alterErrors = flip catchError $ \(MultipleErrors errs) ->
throwError . MultipleErrors $ flip map errs $ \e -> case e of
SimpleErrorWrapper (ErrorParsingModule err) -> SimpleErrorWrapper (ErrorParsingExterns err)
_ -> e
checkPreludeIsDefined :: (MonadWriter MultipleErrors m) => [Module] -> m ()
checkPreludeIsDefined ms = do
let mns = map getModuleName ms
unless (preludeModuleName `elem` mns) $
tell (errorMessage PreludeNotPresent)
reverseDependencies :: ModuleGraph -> M.Map ModuleName [ModuleName]
reverseDependencies g = combine [ (dep, mn) | (mn, deps) <- g, dep <- deps ]
where
combine :: (Ord a) => [(a, b)] -> M.Map a [b]
combine = M.fromList . map ((fst . head) &&& map snd) . groupBy ((==) `on` fst) . sortBy (compare `on` fst)
-- |
-- Add an import declaration for a module if it does not already explicitly import it.
--
addDefaultImport :: ModuleName -> Module -> Module
addDefaultImport toImport m@(Module coms mn decls exps) =
if isExistingImport `any` decls || mn == toImport then m
else Module coms mn (ImportDeclaration toImport Implicit Nothing : decls) exps
where
isExistingImport (ImportDeclaration mn' _ _) | mn' == toImport = True
isExistingImport (PositionedDeclaration _ _ d) = isExistingImport d
isExistingImport _ = False
importPrim :: Module -> Module
importPrim = addDefaultImport (ModuleName [ProperName C.prim])
preludeModuleName :: ModuleName
preludeModuleName = ModuleName [ProperName C.prelude]
importPrelude :: Module -> Module
importPrelude = addDefaultImport preludeModuleName
version :: Version
version = Paths.version