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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620
|
-- | All (almost) compiler pipelines end with an 'Action', which does
-- something with the result of the pipeline.
module Futhark.Actions
( printAction,
printAliasesAction,
printLastUseGPU,
printFusionGraph,
printInterferenceGPU,
printMemAliasGPU,
printMemoryAccessAnalysis,
callGraphAction,
impCodeGenAction,
kernelImpCodeGenAction,
multicoreImpCodeGenAction,
metricsAction,
compileCAction,
compileCtoWASMAction,
compileOpenCLAction,
compileCUDAAction,
compileHIPAction,
compileMulticoreAction,
compileMulticoreToISPCAction,
compileMulticoreToWASMAction,
compilePythonAction,
compilePyOpenCLAction,
)
where
import Control.Monad
import Control.Monad.IO.Class
import Data.Bifunctor
import Data.List (intercalate)
import Data.Map qualified as M
import Data.Maybe (fromMaybe)
import Data.Text qualified as T
import Data.Text.IO qualified as T
import Futhark.Analysis.AccessPattern
import Futhark.Analysis.Alias
import Futhark.Analysis.CallGraph (buildCallGraph)
import Futhark.Analysis.Interference qualified as Interference
import Futhark.Analysis.LastUse qualified as LastUse
import Futhark.Analysis.MemAlias qualified as MemAlias
import Futhark.Analysis.Metrics
import Futhark.CodeGen.Backends.CCUDA qualified as CCUDA
import Futhark.CodeGen.Backends.COpenCL qualified as COpenCL
import Futhark.CodeGen.Backends.HIP qualified as HIP
import Futhark.CodeGen.Backends.MulticoreC qualified as MulticoreC
import Futhark.CodeGen.Backends.MulticoreISPC qualified as MulticoreISPC
import Futhark.CodeGen.Backends.MulticoreWASM qualified as MulticoreWASM
import Futhark.CodeGen.Backends.PyOpenCL qualified as PyOpenCL
import Futhark.CodeGen.Backends.SequentialC qualified as SequentialC
import Futhark.CodeGen.Backends.SequentialPython qualified as SequentialPy
import Futhark.CodeGen.Backends.SequentialWASM qualified as SequentialWASM
import Futhark.CodeGen.ImpGen.GPU qualified as ImpGenGPU
import Futhark.CodeGen.ImpGen.Multicore qualified as ImpGenMulticore
import Futhark.CodeGen.ImpGen.Sequential qualified as ImpGenSequential
import Futhark.Compiler.CLI
import Futhark.IR
import Futhark.IR.GPUMem (GPUMem)
import Futhark.IR.MCMem (MCMem)
import Futhark.IR.SOACS (SOACS)
import Futhark.IR.SeqMem (SeqMem)
import Futhark.Optimise.Fusion.GraphRep qualified
import Futhark.Util (runProgramWithExitCode, unixEnvironment)
import Futhark.Version (versionString)
import System.Directory
import System.Exit
import System.FilePath
import System.Info qualified
-- | Print the result to stdout.
printAction :: (ASTRep rep) => Action rep
printAction =
Action
{ actionName = "Prettyprint",
actionDescription = "Prettyprint the resulting internal representation on standard output.",
actionProcedure = liftIO . putStrLn . prettyString
}
-- | Print the result to stdout, alias annotations.
printAliasesAction :: (AliasableRep rep) => Action rep
printAliasesAction =
Action
{ actionName = "Prettyprint",
actionDescription = "Prettyprint the resulting internal representation on standard output.",
actionProcedure = liftIO . putStrLn . prettyString . aliasAnalysis
}
-- | Print last use information to stdout.
printLastUseGPU :: Action GPUMem
printLastUseGPU =
Action
{ actionName = "print last use gpu",
actionDescription = "Print last use information on gpu.",
actionProcedure =
liftIO
. putStrLn
. prettyString
. bimap M.toList (M.toList . fmap M.toList)
. LastUse.lastUseGPUMem
. aliasAnalysis
}
-- | Print fusion graph to stdout.
printFusionGraph :: Action SOACS
printFusionGraph =
Action
{ actionName = "print fusion graph",
actionDescription = "Print fusion graph in Graphviz format.",
actionProcedure =
liftIO
. mapM_
( putStrLn
. Futhark.Optimise.Fusion.GraphRep.pprg
. Futhark.Optimise.Fusion.GraphRep.mkDepGraphForFun
)
. progFuns
}
-- | Print interference information to stdout.
printInterferenceGPU :: Action GPUMem
printInterferenceGPU =
Action
{ actionName = "print interference gpu",
actionDescription = "Print interference information on gpu.",
actionProcedure = liftIO . print . Interference.analyseProgGPU
}
-- | Print memory alias information to stdout
printMemAliasGPU :: Action GPUMem
printMemAliasGPU =
Action
{ actionName = "print mem alias gpu",
actionDescription = "Print memory alias information on gpu.",
actionProcedure = liftIO . print . MemAlias.analyzeGPUMem
}
-- | Print result of array access analysis on the IR
printMemoryAccessAnalysis :: (Analyse rep) => Action rep
printMemoryAccessAnalysis =
Action
{ actionName = "array-access-analysis",
actionDescription = "Prettyprint the array access analysis to standard output.",
actionProcedure = liftIO . putStrLn . prettyString . analyseDimAccesses
}
-- | Print call graph to stdout.
callGraphAction :: Action SOACS
callGraphAction =
Action
{ actionName = "call-graph",
actionDescription = "Prettyprint the callgraph of the result to standard output.",
actionProcedure = liftIO . putStrLn . prettyString . buildCallGraph
}
-- | Print metrics about AST node counts to stdout.
metricsAction :: (OpMetrics (Op rep)) => Action rep
metricsAction =
Action
{ actionName = "Compute metrics",
actionDescription = "Print metrics on the final AST.",
actionProcedure = liftIO . putStr . show . progMetrics
}
-- | Convert the program to sequential ImpCode and print it to stdout.
impCodeGenAction :: Action SeqMem
impCodeGenAction =
Action
{ actionName = "Compile imperative",
actionDescription = "Translate program into imperative IL and write it on standard output.",
actionProcedure = liftIO . putStrLn . prettyString . snd <=< ImpGenSequential.compileProg
}
-- | Convert the program to GPU ImpCode and print it to stdout.
kernelImpCodeGenAction :: Action GPUMem
kernelImpCodeGenAction =
Action
{ actionName = "Compile imperative kernels",
actionDescription = "Translate program into imperative IL with kernels and write it on standard output.",
actionProcedure = liftIO . putStrLn . prettyString . snd <=< ImpGenGPU.compileProgHIP
}
-- | Convert the program to CPU multicore ImpCode and print it to stdout.
multicoreImpCodeGenAction :: Action MCMem
multicoreImpCodeGenAction =
Action
{ actionName = "Compile to imperative multicore",
actionDescription = "Translate program into imperative multicore IL and write it on standard output.",
actionProcedure = liftIO . putStrLn . prettyString . snd <=< ImpGenMulticore.compileProg
}
-- Lines that we prepend (in comments) to generated code.
headerLines :: [T.Text]
headerLines = T.lines $ "Generated by Futhark " <> versionString
cHeaderLines :: [T.Text]
cHeaderLines = map ("// " <>) headerLines
pyHeaderLines :: [T.Text]
pyHeaderLines = map ("# " <>) headerLines
cPrependHeader :: T.Text -> T.Text
cPrependHeader = (T.unlines cHeaderLines <>)
pyPrependHeader :: T.Text -> T.Text
pyPrependHeader = (T.unlines pyHeaderLines <>)
cmdCC :: String
cmdCC = fromMaybe "cc" $ lookup "CC" unixEnvironment
cmdCFLAGS :: [String] -> [String]
cmdCFLAGS def = maybe def words $ lookup "CFLAGS" unixEnvironment
cmdISPCFLAGS :: [String] -> [String]
cmdISPCFLAGS def = maybe def words $ lookup "ISPCFLAGS" unixEnvironment
runCC :: String -> String -> [String] -> [String] -> FutharkM ()
runCC cpath outpath cflags_def ldflags = do
ret <-
liftIO $
runProgramWithExitCode
cmdCC
( [cpath, "-o", outpath]
++ cmdCFLAGS cflags_def
++
-- The default LDFLAGS are always added.
ldflags
)
mempty
case ret of
Left err ->
externalErrorS $ "Failed to run " ++ cmdCC ++ ": " ++ show err
Right (ExitFailure code, _, gccerr) ->
externalErrorS $
cmdCC
++ " failed with code "
++ show code
++ ":\n"
++ gccerr
Right (ExitSuccess, _, _) ->
pure ()
runISPC :: String -> String -> String -> String -> [String] -> [String] -> [String] -> FutharkM ()
runISPC ispcpath outpath cpath ispcextension ispc_flags cflags_def ldflags = do
ret_ispc <-
liftIO $
runProgramWithExitCode
cmdISPC
( [ispcpath, "-o", ispcbase `addExtension` "o"]
++ ["--addressing=64", "--pic"]
++ cmdISPCFLAGS ispc_flags -- These flags are always needed
)
mempty
ret <-
liftIO $
runProgramWithExitCode
cmdCC
( [ispcbase `addExtension` "o"]
++ [cpath, "-o", outpath]
++ cmdCFLAGS cflags_def
++
-- The default LDFLAGS are always added.
ldflags
)
mempty
case ret_ispc of
Left err ->
externalErrorS $ "Failed to run " ++ cmdISPC ++ ": " ++ show err
Right (ExitFailure code, _, ispcerr) -> throwError cmdISPC code ispcerr
Right (ExitSuccess, _, _) ->
case ret of
Left err ->
externalErrorS $ "Failed to run ispc: " ++ show err
Right (ExitFailure code, _, gccerr) -> throwError cmdCC code gccerr
Right (ExitSuccess, _, _) ->
pure ()
where
cmdISPC = "ispc"
ispcbase = outpath <> ispcextension
throwError prog code err =
externalErrorS $
prog
++ " failed with code "
++ show code
++ ":\n"
++ err
-- | The @futhark c@ action.
compileCAction :: FutharkConfig -> CompilerMode -> FilePath -> Action SeqMem
compileCAction fcfg mode outpath =
Action
{ actionName = "Compile to sequential C",
actionDescription = "Compile to sequential C",
actionProcedure = helper
}
where
helper prog = do
cprog <- handleWarnings fcfg $ SequentialC.compileProg versionString prog
let cpath = outpath `addExtension` "c"
hpath = outpath `addExtension` "h"
jsonpath = outpath `addExtension` "json"
case mode of
ToLibrary -> do
let (header, impl, manifest) = SequentialC.asLibrary cprog
liftIO $ T.writeFile hpath $ cPrependHeader header
liftIO $ T.writeFile cpath $ cPrependHeader impl
liftIO $ T.writeFile jsonpath manifest
ToExecutable -> do
liftIO $ T.writeFile cpath $ SequentialC.asExecutable cprog
runCC cpath outpath ["-O3", "-std=c99"] ["-lm"]
ToServer -> do
liftIO $ T.writeFile cpath $ SequentialC.asServer cprog
runCC cpath outpath ["-O3", "-std=c99"] ["-lm"]
-- | The @futhark opencl@ action.
compileOpenCLAction :: FutharkConfig -> CompilerMode -> FilePath -> Action GPUMem
compileOpenCLAction fcfg mode outpath =
Action
{ actionName = "Compile to OpenCL",
actionDescription = "Compile to OpenCL",
actionProcedure = helper
}
where
helper prog = do
cprog <- handleWarnings fcfg $ COpenCL.compileProg versionString prog
let cpath = outpath `addExtension` "c"
hpath = outpath `addExtension` "h"
jsonpath = outpath `addExtension` "json"
extra_options
| System.Info.os == "darwin" =
["-framework", "OpenCL"]
| System.Info.os == "mingw32" =
["-lOpenCL64"]
| otherwise =
["-lOpenCL"]
case mode of
ToLibrary -> do
let (header, impl, manifest) = COpenCL.asLibrary cprog
liftIO $ T.writeFile hpath $ cPrependHeader header
liftIO $ T.writeFile cpath $ cPrependHeader impl
liftIO $ T.writeFile jsonpath manifest
ToExecutable -> do
liftIO $ T.writeFile cpath $ cPrependHeader $ COpenCL.asExecutable cprog
runCC cpath outpath ["-O", "-std=c99"] ("-lm" : extra_options)
ToServer -> do
liftIO $ T.writeFile cpath $ cPrependHeader $ COpenCL.asServer cprog
runCC cpath outpath ["-O", "-std=c99"] ("-lm" : extra_options)
-- | The @futhark cuda@ action.
compileCUDAAction :: FutharkConfig -> CompilerMode -> FilePath -> Action GPUMem
compileCUDAAction fcfg mode outpath =
Action
{ actionName = "Compile to CUDA",
actionDescription = "Compile to CUDA",
actionProcedure = helper
}
where
helper prog = do
cprog <- handleWarnings fcfg $ CCUDA.compileProg versionString prog
let cpath = outpath `addExtension` "c"
hpath = outpath `addExtension` "h"
jsonpath = outpath `addExtension` "json"
extra_options =
[ "-lcuda",
"-lcudart",
"-lnvrtc"
]
case mode of
ToLibrary -> do
let (header, impl, manifest) = CCUDA.asLibrary cprog
liftIO $ T.writeFile hpath $ cPrependHeader header
liftIO $ T.writeFile cpath $ cPrependHeader impl
liftIO $ T.writeFile jsonpath manifest
ToExecutable -> do
liftIO $ T.writeFile cpath $ cPrependHeader $ CCUDA.asExecutable cprog
runCC cpath outpath ["-O", "-std=c99"] ("-lm" : extra_options)
ToServer -> do
liftIO $ T.writeFile cpath $ cPrependHeader $ CCUDA.asServer cprog
runCC cpath outpath ["-O", "-std=c99"] ("-lm" : extra_options)
-- | The @futhark hip@ action.
compileHIPAction :: FutharkConfig -> CompilerMode -> FilePath -> Action GPUMem
compileHIPAction fcfg mode outpath =
Action
{ actionName = "Compile to HIP",
actionDescription = "Compile to HIP",
actionProcedure = helper
}
where
helper prog = do
cprog <- handleWarnings fcfg $ HIP.compileProg versionString prog
let cpath = outpath `addExtension` "c"
hpath = outpath `addExtension` "h"
jsonpath = outpath `addExtension` "json"
extra_options =
[ "-lamdhip64",
"-lhiprtc-builtins"
]
case mode of
ToLibrary -> do
let (header, impl, manifest) = HIP.asLibrary cprog
liftIO $ T.writeFile hpath $ cPrependHeader header
liftIO $ T.writeFile cpath $ cPrependHeader impl
liftIO $ T.writeFile jsonpath manifest
ToExecutable -> do
liftIO $ T.writeFile cpath $ cPrependHeader $ HIP.asExecutable cprog
runCC cpath outpath ["-O", "-std=c99"] ("-lm" : extra_options)
ToServer -> do
liftIO $ T.writeFile cpath $ cPrependHeader $ HIP.asServer cprog
runCC cpath outpath ["-O", "-std=c99"] ("-lm" : extra_options)
-- | The @futhark multicore@ action.
compileMulticoreAction :: FutharkConfig -> CompilerMode -> FilePath -> Action MCMem
compileMulticoreAction fcfg mode outpath =
Action
{ actionName = "Compile to multicore",
actionDescription = "Compile to multicore",
actionProcedure = helper
}
where
helper prog = do
cprog <- handleWarnings fcfg $ MulticoreC.compileProg versionString prog
let cpath = outpath `addExtension` "c"
hpath = outpath `addExtension` "h"
jsonpath = outpath `addExtension` "json"
case mode of
ToLibrary -> do
let (header, impl, manifest) = MulticoreC.asLibrary cprog
liftIO $ T.writeFile hpath $ cPrependHeader header
liftIO $ T.writeFile cpath $ cPrependHeader impl
liftIO $ T.writeFile jsonpath manifest
ToExecutable -> do
liftIO $ T.writeFile cpath $ cPrependHeader $ MulticoreC.asExecutable cprog
runCC cpath outpath ["-O3", "-std=c99"] ["-lm", "-pthread"]
ToServer -> do
liftIO $ T.writeFile cpath $ cPrependHeader $ MulticoreC.asServer cprog
runCC cpath outpath ["-O3", "-std=c99"] ["-lm", "-pthread"]
-- | The @futhark ispc@ action.
compileMulticoreToISPCAction :: FutharkConfig -> CompilerMode -> FilePath -> Action MCMem
compileMulticoreToISPCAction fcfg mode outpath =
Action
{ actionName = "Compile to multicore ISPC",
actionDescription = "Compile to multicore ISPC",
actionProcedure = helper
}
where
helper prog = do
let cpath = outpath `addExtension` "c"
hpath = outpath `addExtension` "h"
jsonpath = outpath `addExtension` "json"
ispcpath = outpath `addExtension` "kernels.ispc"
ispcextension = "_ispc"
(cprog, ispc) <- handleWarnings fcfg $ MulticoreISPC.compileProg versionString prog
case mode of
ToLibrary -> do
let (header, impl, manifest) = MulticoreC.asLibrary cprog
liftIO $ T.writeFile hpath $ cPrependHeader header
liftIO $ T.writeFile cpath $ cPrependHeader impl
liftIO $ T.writeFile ispcpath ispc
liftIO $ T.writeFile jsonpath manifest
ToExecutable -> do
liftIO $ T.writeFile cpath $ cPrependHeader $ MulticoreC.asExecutable cprog
liftIO $ T.writeFile ispcpath ispc
runISPC ispcpath outpath cpath ispcextension ["-O3", "--woff"] ["-O3", "-std=c99"] ["-lm", "-pthread"]
ToServer -> do
liftIO $ T.writeFile cpath $ cPrependHeader $ MulticoreC.asServer cprog
liftIO $ T.writeFile ispcpath ispc
runISPC ispcpath outpath cpath ispcextension ["-O3", "--woff"] ["-O3", "-std=c99"] ["-lm", "-pthread"]
pythonCommon ::
(CompilerMode -> String -> prog -> FutharkM (Warnings, T.Text)) ->
FutharkConfig ->
CompilerMode ->
FilePath ->
prog ->
FutharkM ()
pythonCommon codegen fcfg mode outpath prog = do
let class_name =
case mode of
ToLibrary -> takeBaseName outpath
_ -> "internal"
pyprog <- handleWarnings fcfg $ codegen mode class_name prog
case mode of
ToLibrary ->
liftIO $ T.writeFile (outpath `addExtension` "py") $ pyPrependHeader pyprog
_ -> liftIO $ do
T.writeFile outpath $ "#!/usr/bin/env python3\n" <> pyPrependHeader pyprog
perms <- liftIO $ getPermissions outpath
setPermissions outpath $ setOwnerExecutable True perms
-- | The @futhark python@ action.
compilePythonAction :: FutharkConfig -> CompilerMode -> FilePath -> Action SeqMem
compilePythonAction fcfg mode outpath =
Action
{ actionName = "Compile to PyOpenCL",
actionDescription = "Compile to Python with OpenCL",
actionProcedure = pythonCommon SequentialPy.compileProg fcfg mode outpath
}
-- | The @futhark pyopencl@ action.
compilePyOpenCLAction :: FutharkConfig -> CompilerMode -> FilePath -> Action GPUMem
compilePyOpenCLAction fcfg mode outpath =
Action
{ actionName = "Compile to PyOpenCL",
actionDescription = "Compile to Python with OpenCL",
actionProcedure = pythonCommon PyOpenCL.compileProg fcfg mode outpath
}
cmdEMCFLAGS :: [String] -> [String]
cmdEMCFLAGS def = maybe def words $ lookup "EMCFLAGS" unixEnvironment
runEMCC :: String -> String -> FilePath -> [String] -> [String] -> [String] -> Bool -> FutharkM ()
runEMCC cpath outpath classpath cflags_def ldflags expfuns lib = do
ret <-
liftIO $
runProgramWithExitCode
"emcc"
( [cpath, "-o", outpath]
++ ["-lnodefs.js"]
++ ["-s", "--extern-post-js", classpath]
++ ( if lib
then ["-s", "EXPORT_NAME=loadWASM"]
else []
)
++ ["-s", "WASM_BIGINT"]
++ cmdCFLAGS cflags_def
++ cmdEMCFLAGS [""]
++ [ "-s",
"EXPORTED_FUNCTIONS=["
++ intercalate "," ("'_malloc'" : "'_free'" : expfuns)
++ "]"
]
-- The default LDFLAGS are always added.
++ ldflags
)
mempty
case ret of
Left err ->
externalErrorS $ "Failed to run emcc: " ++ show err
Right (ExitFailure code, _, emccerr) ->
externalErrorS $
"emcc failed with code "
++ show code
++ ":\n"
++ emccerr
Right (ExitSuccess, _, _) ->
pure ()
-- | The @futhark wasm@ action.
compileCtoWASMAction :: FutharkConfig -> CompilerMode -> FilePath -> Action SeqMem
compileCtoWASMAction fcfg mode outpath =
Action
{ actionName = "Compile to sequential C",
actionDescription = "Compile to sequential C",
actionProcedure = helper
}
where
helper prog = do
(cprog, jsprog, exps) <-
handleWarnings fcfg $ SequentialWASM.compileProg versionString prog
case mode of
ToLibrary -> do
writeLibs cprog jsprog
liftIO $ T.appendFile classpath SequentialWASM.libraryExports
runEMCC cpath mjspath classpath ["-O3", "-msimd128"] ["-lm"] exps True
_ -> do
-- Non-server executables are not supported.
writeLibs cprog jsprog
liftIO $ T.appendFile classpath SequentialWASM.runServer
runEMCC cpath outpath classpath ["-O3", "-msimd128"] ["-lm"] exps False
writeLibs cprog jsprog = do
let (h, imp, _) = SequentialC.asLibrary cprog
liftIO $ T.writeFile hpath h
liftIO $ T.writeFile cpath imp
liftIO $ T.writeFile classpath jsprog
cpath = outpath `addExtension` "c"
hpath = outpath `addExtension` "h"
mjspath = outpath `addExtension` "mjs"
classpath = outpath `addExtension` ".class.js"
-- | The @futhark wasm-multicore@ action.
compileMulticoreToWASMAction :: FutharkConfig -> CompilerMode -> FilePath -> Action MCMem
compileMulticoreToWASMAction fcfg mode outpath =
Action
{ actionName = "Compile to sequential C",
actionDescription = "Compile to sequential C",
actionProcedure = helper
}
where
helper prog = do
(cprog, jsprog, exps) <-
handleWarnings fcfg $ MulticoreWASM.compileProg versionString prog
case mode of
ToLibrary -> do
writeLibs cprog jsprog
liftIO $ T.appendFile classpath MulticoreWASM.libraryExports
runEMCC cpath mjspath classpath ["-O3", "-msimd128"] ["-lm", "-pthread"] exps True
_ -> do
-- Non-server executables are not supported.
writeLibs cprog jsprog
liftIO $ T.appendFile classpath MulticoreWASM.runServer
runEMCC cpath outpath classpath ["-O3", "-msimd128"] ["-lm", "-pthread"] exps False
writeLibs cprog jsprog = do
let (h, imp, _) = MulticoreC.asLibrary cprog
liftIO $ T.writeFile hpath h
liftIO $ T.writeFile cpath imp
liftIO $ T.writeFile classpath jsprog
cpath = outpath `addExtension` "c"
hpath = outpath `addExtension` "h"
mjspath = outpath `addExtension` "mjs"
classpath = outpath `addExtension` ".class.js"
|