Projects
A collection of my programming projects, with a focus on systems programming, compilers, and web development. Each project represents a step in my learning journey.
Filter by tags:
AlgorithmsCC++Code AnalysisData StructuresDocumentationIR GenerationLLVMLSPNext.jsOptimizationParserReactTypeScriptUtilityshadcn/ui
Cryo Compiler
FeaturedA compiler built from scratch for a C-like language that targets LLVM IR.
C++LLVMParserOptimizationIR Generation
80%
Cryo Language Server
FeaturedA language server for the Cryo programming language built with LSP.
TypeScriptLSPParserCode Analysis
60%
A helper library for C
A collection of utility functions and data structures for C programming.
CAlgorithmsData StructuresUtility
100%
Terminal-themed Portfolio
A personal portfolio website with Unix terminal aesthetics built with Next.js and React.
TypeScriptReactNext.jsshadcn/ui
100%
Cryo Programming Language Website
The official website for the Cryo programming language.
TypeScriptReactNext.jsDocumentation
100%
Featured Project: Compiler
Custom C-like Compiler
80% Complete
This project implements a full compilation pipeline including lexing, parsing, semantic analysis, and code generation targeting LLVM IR. The compiler supports most C features including structs, functions, control flow, and basic type checking.
Implementation Details
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Sample Code from IRSymbolTable.cpp
IRVariableSymbol *IRSymbolTable::createGlobalVariable(const std::string &name, llvm::Type *type,
llvm::Value *initialValue)
{
auto *initVal = initialValue ? llvm::dyn_cast<llvm::Constant>(initialValue)
: llvm::Constant::getNullValue(type);
auto varSymbol = IRSymbolManager::createVariableSymbol(
nullptr, initVal, type, name, AllocaType::Global);
varSymbol.allocation = Allocation::createGlobal(currentModule, type, name, initVal);
addVariable(varSymbol);
return findVariable(name);
}
C++LLVMParserOptimizationIR Generation