Compile to binary executable file
parent
c296d15f85
commit
a9549210a7
|
@ -45,7 +45,7 @@ I recommend using VSCodium, which is preconfigured to have syntax highlighting a
|
||||||
|
|
||||||
- Language: Haskell
|
- Language: Haskell
|
||||||
- Haskell tools: GHCup, Stack, Cabal, GHC 9.2
|
- Haskell tools: GHCup, Stack, Cabal, GHC 9.2
|
||||||
- Libraries: megaparsec, parser-combinators, text, llvm-hs-pure 15, llvm-hs-pretty-15
|
- Libraries: megaparsec, parser-combinators, text, process, llvm-hs-pure 15, llvm-hs-pretty-15
|
||||||
- Dependencies: llvm 15, clang 15
|
- Dependencies: llvm 15, clang 15
|
||||||
- IDE: VSCodium
|
- IDE: VSCodium
|
||||||
- Git platform: Forgejo
|
- Git platform: Forgejo
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
module Compiler.ExeGen () where
|
|
|
@ -6,14 +6,18 @@
|
||||||
|
|
||||||
module Compiler.LLVMGen (llvmGen) where
|
module Compiler.LLVMGen (llvmGen) where
|
||||||
|
|
||||||
import Data.Text.Lazy
|
-- import LLVM.Pretty
|
||||||
|
|
||||||
|
import Data.ByteString (ByteString)
|
||||||
|
import Debug.Trace
|
||||||
|
import LLVM (moduleLLVMAssembly, withModuleFromAST, writeLLVMAssemblyToFile)
|
||||||
import LLVM.AST hiding (function)
|
import LLVM.AST hiding (function)
|
||||||
import LLVM.AST.Type
|
import LLVM.AST.Type
|
||||||
|
import LLVM.Context
|
||||||
import LLVM.IRBuilder.Constant
|
import LLVM.IRBuilder.Constant
|
||||||
import LLVM.IRBuilder.Instruction
|
import LLVM.IRBuilder.Instruction
|
||||||
import LLVM.IRBuilder.Module
|
import LLVM.IRBuilder.Module
|
||||||
import LLVM.IRBuilder.Monad
|
import LLVM.IRBuilder.Monad
|
||||||
import LLVM.Pretty
|
|
||||||
import Types.Expr as Expr
|
import Types.Expr as Expr
|
||||||
|
|
||||||
getLLVM :: Expr -> Module
|
getLLVM :: Expr -> Module
|
||||||
|
@ -23,8 +27,10 @@ getLLVM expr =
|
||||||
printf <- externVarArgs "printf" [ptr] i32
|
printf <- externVarArgs "printf" [ptr] i32
|
||||||
function "main" [] i32 $ \_ -> mdo
|
function "main" [] i32 $ \_ -> mdo
|
||||||
numFormatStr <- globalStringPtr "%d\n" (mkName "str")
|
numFormatStr <- globalStringPtr "%d\n" (mkName "str")
|
||||||
|
traceShow numFormatStr $ pure ()
|
||||||
ourExpression <- exprToLLVM expr
|
ourExpression <- exprToLLVM expr
|
||||||
_ <- call (FunctionType i32 [i32] False) printf [(ConstantOperand numFormatStr, []), (ourExpression, [])]
|
-- _ <- call (FunctionType i32 [i32])
|
||||||
|
_ <- call (FunctionType i32 [ptr] True) printf [(ConstantOperand numFormatStr, []), (ourExpression, [])]
|
||||||
ret (int32 0)
|
ret (int32 0)
|
||||||
|
|
||||||
exprToLLVM ::
|
exprToLLVM ::
|
||||||
|
@ -50,5 +56,10 @@ exprToLLVM (Expr.Mul a b) = mdo
|
||||||
primToLLVM :: Int -> Operand
|
primToLLVM :: Int -> Operand
|
||||||
primToLLVM i = int32 (fromIntegral i)
|
primToLLVM i = int32 (fromIntegral i)
|
||||||
|
|
||||||
llvmGen :: Expr -> Text
|
llvmGen :: Expr -> IO ByteString
|
||||||
llvmGen expr = ppllvm (getLLVM expr)
|
llvmGen expr = do
|
||||||
|
let l = getLLVM expr
|
||||||
|
withContext
|
||||||
|
( \c ->
|
||||||
|
withModuleFromAST c l moduleLLVMAssembly
|
||||||
|
)
|
|
@ -5,10 +5,11 @@ module Main (main) where
|
||||||
|
|
||||||
-- import Compiler.ExeGen
|
-- import Compiler.ExeGen
|
||||||
import Compiler.LLVMGen
|
import Compiler.LLVMGen
|
||||||
import Data.Text.Lazy qualified as L
|
import Data.ByteString.Char8 qualified as B
|
||||||
import Data.Text.Lazy.IO qualified as T
|
import Data.Text.Lazy.IO qualified as T
|
||||||
import Parser.Expr
|
import Parser.Expr
|
||||||
import System.Environment
|
import System.Environment
|
||||||
|
import System.Process
|
||||||
import Types.Expr
|
import Types.Expr
|
||||||
|
|
||||||
getRight :: ParseResult -> Expr
|
getRight :: ParseResult -> Expr
|
||||||
|
@ -21,6 +22,7 @@ main = do
|
||||||
T.putStrLn "- Parsing file..."
|
T.putStrLn "- Parsing file..."
|
||||||
let parsed = getRight (parseExpr contents)
|
let parsed = getRight (parseExpr contents)
|
||||||
T.putStrLn "- Generating LLVM to './a.out.ll'..."
|
T.putStrLn "- Generating LLVM to './a.out.ll'..."
|
||||||
let llvm = llvmGen parsed
|
llvmGen parsed >>= B.writeFile "a.out.ll"
|
||||||
writeFile "a.out.ll" (L.unpack llvm)
|
T.putStrLn "- Compiling to executable './a.out'..."
|
||||||
|
callCommand "clang a.out.ll"
|
||||||
T.putStrLn "- Done."
|
T.putStrLn "- Done."
|
||||||
|
|
|
@ -5,5 +5,7 @@ data Expr
|
||||||
| Add Expr Expr
|
| Add Expr Expr
|
||||||
| Sub Expr Expr
|
| Sub Expr Expr
|
||||||
| Mul Expr Expr
|
| Mul Expr Expr
|
||||||
deriving (-- | Div Expr Expr
|
deriving
|
||||||
Show)
|
( -- | Div Expr Expr
|
||||||
|
Show
|
||||||
|
)
|
|
@ -6,9 +6,10 @@ dependencies:
|
||||||
- megaparsec >= 9.0.1 && < 10
|
- megaparsec >= 9.0.1 && < 10
|
||||||
- parser-combinators
|
- parser-combinators
|
||||||
- text
|
- text
|
||||||
# - llvm-hs >= 15 && < 16
|
- process
|
||||||
|
- llvm-hs >= 15 && < 16
|
||||||
- llvm-hs-pure >= 15 && < 16
|
- llvm-hs-pure >= 15 && < 16
|
||||||
- llvm-hs-pretty >= 15 && < 16
|
# - llvm-hs-pretty >= 15 && < 16
|
||||||
- bytestring
|
- bytestring
|
||||||
tested-with: GHC == 9.2.8
|
tested-with: GHC == 9.2.8
|
||||||
category: Compilers/Interpreters
|
category: Compilers/Interpreters
|
||||||
|
|
|
@ -16,7 +16,6 @@ tested-with:
|
||||||
executable really-bad-compiler-in-haskell
|
executable really-bad-compiler-in-haskell
|
||||||
main-is: Main.hs
|
main-is: Main.hs
|
||||||
other-modules:
|
other-modules:
|
||||||
Compiler.ExeGen
|
|
||||||
Compiler.LLVMGen
|
Compiler.LLVMGen
|
||||||
Parser.Expr
|
Parser.Expr
|
||||||
Types.Expr
|
Types.Expr
|
||||||
|
@ -29,9 +28,10 @@ executable really-bad-compiler-in-haskell
|
||||||
build-depends:
|
build-depends:
|
||||||
base >=4.14.3 && <5
|
base >=4.14.3 && <5
|
||||||
, bytestring
|
, bytestring
|
||||||
, llvm-hs-pretty ==15.*
|
, llvm-hs ==15.*
|
||||||
, llvm-hs-pure ==15.*
|
, llvm-hs-pure ==15.*
|
||||||
, megaparsec >=9.0.1 && <10
|
, megaparsec >=9.0.1 && <10
|
||||||
, parser-combinators
|
, parser-combinators
|
||||||
|
, process
|
||||||
, text
|
, text
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
|
|
@ -9,7 +9,7 @@ extra-deps:
|
||||||
commit: 5bca2c1a2a3aa98ecfb19181e7a5ebbf3e212b76
|
commit: 5bca2c1a2a3aa98ecfb19181e7a5ebbf3e212b76
|
||||||
subdirs:
|
subdirs:
|
||||||
- llvm-hs-pure
|
- llvm-hs-pure
|
||||||
# - llvm-hs
|
- llvm-hs
|
||||||
nix:
|
nix:
|
||||||
enable: true
|
enable: true
|
||||||
packages: [llvm_15, clang_15, libxml2]
|
packages: [llvm_15, clang_15, libxml2]
|
||||||
|
|
|
@ -28,6 +28,19 @@ packages:
|
||||||
original:
|
original:
|
||||||
subdir: llvm-hs-pure
|
subdir: llvm-hs-pure
|
||||||
url: https://github.com/llvm-hs/llvm-hs/archive/5bca2c1a2a3aa98ecfb19181e7a5ebbf3e212b76.tar.gz
|
url: https://github.com/llvm-hs/llvm-hs/archive/5bca2c1a2a3aa98ecfb19181e7a5ebbf3e212b76.tar.gz
|
||||||
|
- completed:
|
||||||
|
name: llvm-hs
|
||||||
|
pantry-tree:
|
||||||
|
sha256: 21f74a6f51fae6c0a0fcf3e6620a59f341289ac743998b41ed3276fd1b7d8862
|
||||||
|
size: 12716
|
||||||
|
sha256: 526b67e2da9ce25b3856c221b6772e699a7593dbb5ba38e7ee2436349de70966
|
||||||
|
size: 9802209
|
||||||
|
subdir: llvm-hs
|
||||||
|
url: https://github.com/llvm-hs/llvm-hs/archive/5bca2c1a2a3aa98ecfb19181e7a5ebbf3e212b76.tar.gz
|
||||||
|
version: 15.0.0
|
||||||
|
original:
|
||||||
|
subdir: llvm-hs
|
||||||
|
url: https://github.com/llvm-hs/llvm-hs/archive/5bca2c1a2a3aa98ecfb19181e7a5ebbf3e212b76.tar.gz
|
||||||
snapshots:
|
snapshots:
|
||||||
- completed:
|
- completed:
|
||||||
sha256: 5a59b2a405b3aba3c00188453be172b85893cab8ebc352b1ef58b0eae5d248a2
|
sha256: 5a59b2a405b3aba3c00188453be172b85893cab8ebc352b1ef58b0eae5d248a2
|
||||||
|
|
Reference in New Issue