A HEAR (C-like) compiler written in Haskell
This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues/pull-requests.
Go to file
Ethan Reece c0e77d22cf
Print generated llvm
2023-09-22 16:38:17 -05:00
app Print generated llvm 2023-09-22 16:38:17 -05:00
example Add example programs 2023-09-11 12:04:36 -05:00
.gitignore Cabal init 2023-09-07 17:24:45 -05:00
CHANGELOG.md Cabal init 2023-09-07 17:24:45 -05:00
README.md Copy and paste llvm-hs-examples/basic on GitHub to LLVMGen/Expression.hs and configure stack to compile it correctly 2023-09-17 23:18:55 -05:00
package.yaml Copy and paste llvm-hs-examples/basic on GitHub to LLVMGen/Expression.hs and configure stack to compile it correctly 2023-09-17 23:18:55 -05:00
really-bad-compiler-in-haskell.cabal Copy and paste llvm-hs-examples/basic on GitHub to LLVMGen/Expression.hs and configure stack to compile it correctly 2023-09-17 23:18:55 -05:00
stack.yaml Copy and paste llvm-hs-examples/basic on GitHub to LLVMGen/Expression.hs and configure stack to compile it correctly 2023-09-17 23:18:55 -05:00
stack.yaml.lock Copy and paste llvm-hs-examples/basic on GitHub to LLVMGen/Expression.hs and configure stack to compile it correctly 2023-09-17 23:18:55 -05:00

README.md

Really Bad Compiler in Haskell

A compiler written in Haskell which can currently perform basic arithmetic using the megaparsec and llvm-hs libraries (I do not know what language I am going to compile yet). Built for the Introduction to Compiler Design class at The University of Texas at Dallas.

Main repo: https://git.sudoer.ch/me/really-bad-compiler-in-haskell

Build Instructions

  • Install ghcup (for managing Haskell tools) and nix (for managing external dependencies).
  • Clone the repo.
  • Use ghcup to install stack 2.9.3, HLS 2.2.0.0, GHC 9.2.8, and cabal 3.6.2.0.
  • Use stack run <file> to run the program (for example, stack run example/1).

Known bugs

Building

  • If llvm_16 is in the nix store, stack will use it for some reason and the build will fail. Currently, you may need to run nix-store --delete /nix/store/<llvm16devdirectory> to build it.

File structure

  • app - contains the compiler program
  • example - contains example programs that can be compiled

Credits

Learning Resources Used

Tools

  • Language: Haskell
  • Haskell tools: GHCup, Stack, Cabal
  • Libraries: megaparsec, parser-combinators, text, llvm-hs-pure
  • Dependencies: llvm, clang
  • IDE: VSCodium
  • Git platform: Forgejo
  • AI: Phind
  • Search: Kagi, Stack Overflow