mirror of
https://github.com/anoma/juvix.git
synced 2024-12-02 10:47:32 +03:00
c50ad06976
* Closes #3077 * Closes #3100 * Adds a compilation-time configuration script that creates a `config/config.json` file which is then read by the `Makefile`/`justfile` and embedded into the Juvix binary.
112 lines
3.5 KiB
Haskell
112 lines
3.5 KiB
Haskell
module Runtime.Base where
|
|
|
|
import Base
|
|
import Data.FileEmbed
|
|
import Juvix.Config qualified as Config
|
|
import Juvix.Extra.Clang
|
|
import System.Process qualified as P
|
|
|
|
clangCompile ::
|
|
(Path Abs File -> Path Abs File -> [String]) ->
|
|
Path Abs File ->
|
|
Path Rel File ->
|
|
(Path Abs File -> IO Text) ->
|
|
(String -> IO ()) ->
|
|
IO Text
|
|
clangCompile mkClangArgs inputFile outputFile execute step = do
|
|
mp <- fmap extractClangPath <$> runM findClang
|
|
case mp of
|
|
Just clangPath ->
|
|
withTempDir'
|
|
( \dirPath -> do
|
|
let outputFile' = dirPath <//> outputFile
|
|
step "C compilation"
|
|
P.callProcess
|
|
(toFilePath clangPath)
|
|
(mkClangArgs outputFile' inputFile)
|
|
step "Execution"
|
|
execute outputFile'
|
|
)
|
|
Nothing -> assertFailure "clang not found"
|
|
|
|
clangAssertion :: Int -> Path Abs File -> Path Abs File -> Text -> ((String -> IO ()) -> Assertion)
|
|
clangAssertion optLevel inputFile expectedFile stdinText step = do
|
|
when (Config.config ^. Config.configWasm) $ do
|
|
step "Check wasmer is on path"
|
|
assertCmdExists $(mkRelFile "wasmer")
|
|
|
|
expected <- readFile expectedFile
|
|
|
|
let executeWasm :: Path Abs File -> IO Text
|
|
executeWasm outputFile = readProcess "wasmer" [toFilePath outputFile] stdinText
|
|
|
|
let executeNative :: Path Abs File -> IO Text
|
|
executeNative outputFile = readProcess (toFilePath outputFile) [] stdinText
|
|
|
|
when (Config.config ^. Config.configWasm) $ do
|
|
step "Lookup WASI_SYSROOT_PATH"
|
|
sysrootPath :: Path Abs Dir <- getWasiSysrootPath
|
|
|
|
step "Compile C to WASM32-WASI"
|
|
actualWasm <- clangCompile (wasiArgs optLevel sysrootPath) inputFile $(mkRelFile "Program.wasm") executeWasm step
|
|
step "Compare expected and actual program output"
|
|
assertEqDiffText ("check: WASM output = " <> toFilePath expectedFile) actualWasm expected
|
|
|
|
step "Compile C to native 64-bit code"
|
|
actualNative <- clangCompile (native64Args optLevel) inputFile $(mkRelFile "Program") executeNative step
|
|
step "Compare expected and actual program output"
|
|
assertEqDiffText ("check: native output = " <> toFilePath expectedFile) actualNative expected
|
|
|
|
commonArgs :: Path Abs File -> [String]
|
|
commonArgs outputFile =
|
|
[ "-DDEBUG",
|
|
"-W",
|
|
"-Wall",
|
|
"-Wno-unused-parameter",
|
|
"-Wno-unused-label",
|
|
"-Werror",
|
|
"-std=c11",
|
|
"-I",
|
|
runtimeInclude,
|
|
"-o",
|
|
toFilePath outputFile
|
|
]
|
|
where
|
|
runtimeInclude :: FilePath
|
|
runtimeInclude = $(makeRelativeToProject "runtime/c/include" >>= strToExp)
|
|
|
|
native64Args :: Int -> Path Abs File -> Path Abs File -> [String]
|
|
native64Args optLevel outputFile inputFile =
|
|
commonArgs outputFile
|
|
<> [ "-DARCH_NATIVE64",
|
|
"-DAPI_LIBC",
|
|
"-m64",
|
|
"-O" <> show optLevel,
|
|
"-L",
|
|
juvixLibraryDir,
|
|
toFilePath inputFile,
|
|
"-ljuvix"
|
|
]
|
|
where
|
|
juvixLibraryDir :: FilePath
|
|
juvixLibraryDir = $(makeRelativeToProject "runtime/c/_build.native64-debug" >>= strToExp)
|
|
|
|
wasiArgs :: Int -> Path Abs Dir -> Path Abs File -> Path Abs File -> [String]
|
|
wasiArgs optLevel sysrootPath outputFile inputFile =
|
|
commonArgs outputFile
|
|
<> [ "-DARCH_WASM32",
|
|
"-DAPI_WASI",
|
|
"-O" <> show optLevel,
|
|
"-nodefaultlibs",
|
|
"--target=wasm32-wasi",
|
|
"--sysroot",
|
|
toFilePath sysrootPath,
|
|
"-L",
|
|
toFilePath juvixLibraryDir,
|
|
toFilePath inputFile,
|
|
"-ljuvix"
|
|
]
|
|
where
|
|
juvixLibraryDir :: Path Abs Dir
|
|
juvixLibraryDir = absDir $(makeRelativeToProject "runtime/c/_build.wasm32-wasi-debug" >>= strToExp)
|