Reorganize code
This commit is contained in:
parent
297ff832b5
commit
612b4d63a8
188
src/codegen.rs
188
src/codegen.rs
@ -1,147 +1,65 @@
|
|||||||
use std::ffi::CString;
|
use std::collections::HashMap;
|
||||||
use std::mem;
|
|
||||||
|
|
||||||
use llvm_sys::{core::*, prelude::*, LLVMBuilder, LLVMContext, LLVMModule};
|
use crate::{
|
||||||
|
llvm_ir::{IRBlock, IRModule, Value, ValueType},
|
||||||
|
parser::{
|
||||||
|
BinaryOperator, BlockLevelStatement, Expression, FunctionDefinition, Literal,
|
||||||
|
TopLevelStatement,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
use crate::parser::Literal;
|
pub fn codegen(statements: Vec<TopLevelStatement>) {
|
||||||
|
let mut c = IRModule::new();
|
||||||
|
for statement in statements {
|
||||||
|
match statement {
|
||||||
|
TopLevelStatement::FunctionDefinition(FunctionDefinition(sig, block)) => {
|
||||||
|
let mut named_vars: HashMap<String, Value> = HashMap::new();
|
||||||
|
|
||||||
macro_rules! cstr {
|
let func = c.create_func(sig.name, ValueType::I32);
|
||||||
($string:expr) => {
|
let mut c_block = c.create_block();
|
||||||
core::ffi::CStr::from_bytes_with_nul_unchecked(concat!($string, "\0").as_bytes()).as_ptr()
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
for stmt in block.0 {
|
||||||
pub enum ValueType {
|
match stmt {
|
||||||
I32,
|
BlockLevelStatement::Let(let_statement) => {
|
||||||
}
|
let value = codegen_exp(&mut c_block, &named_vars, let_statement.1);
|
||||||
|
named_vars.insert(let_statement.0, value);
|
||||||
|
}
|
||||||
|
BlockLevelStatement::Return(_) => panic!("Should never exist!"),
|
||||||
|
BlockLevelStatement::Import(_) => {}
|
||||||
|
BlockLevelStatement::Expression(_) => {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl ValueType {
|
let value = if let Some(exp) = block.1 {
|
||||||
unsafe fn get_llvm_type(&self, codegen: &mut IRModule) -> LLVMTypeRef {
|
codegen_exp(&mut c_block, &named_vars, exp)
|
||||||
match *self {
|
} else {
|
||||||
Self::I32 => LLVMInt32TypeInContext(codegen.context),
|
c_block.get_const(&Literal::I32(0))
|
||||||
}
|
};
|
||||||
}
|
func.add_definition(value, c_block);
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
|
||||||
#[must_use = "value contains raw pointer and must be inserted somewhere"]
|
|
||||||
pub struct Value(ValueType, LLVMValueRef);
|
|
||||||
|
|
||||||
fn into_cstring<T: Into<String>>(value: T) -> CString {
|
|
||||||
let string = value.into();
|
|
||||||
unsafe { CString::from_vec_with_nul_unchecked((string + "\0").into_bytes()) }
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct IRModule {
|
|
||||||
context: *mut LLVMContext,
|
|
||||||
module: *mut LLVMModule,
|
|
||||||
builder: *mut LLVMBuilder,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl IRModule {
|
|
||||||
pub fn new() -> IRModule {
|
|
||||||
unsafe {
|
|
||||||
// Set up a context, module and builder in that context.
|
|
||||||
let context = LLVMContextCreate();
|
|
||||||
let module = LLVMModuleCreateWithNameInContext(cstr!("testmodule"), context);
|
|
||||||
let builder = LLVMCreateBuilderInContext(context);
|
|
||||||
|
|
||||||
IRModule {
|
|
||||||
context,
|
|
||||||
module,
|
|
||||||
builder,
|
|
||||||
}
|
}
|
||||||
|
TopLevelStatement::Import(_) => {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn create_block(&mut self) -> IRBlock {
|
fn codegen_exp(
|
||||||
IRBlock::create("entry", self)
|
c_block: &mut IRBlock,
|
||||||
}
|
named_vars: &HashMap<String, Value>,
|
||||||
|
expression: Expression,
|
||||||
pub fn create_func<T: Into<String>>(&mut self, name: T, return_type: ValueType) -> IRFunction {
|
) -> Value {
|
||||||
unsafe {
|
use Expression::*;
|
||||||
let mut argts = [];
|
match expression {
|
||||||
let func_type = LLVMFunctionType(
|
Binop(op, lhs, rhs) => match op {
|
||||||
return_type.get_llvm_type(self),
|
BinaryOperator::Add => {
|
||||||
argts.as_mut_ptr(),
|
let lhs = codegen_exp(c_block, named_vars, *lhs);
|
||||||
argts.len() as u32,
|
let rhs = codegen_exp(c_block, named_vars, *rhs);
|
||||||
0,
|
c_block.add(lhs, rhs).unwrap()
|
||||||
);
|
|
||||||
|
|
||||||
let anon_func = LLVMAddFunction(self.module, into_cstring(name).as_ptr(), func_type);
|
|
||||||
IRFunction {
|
|
||||||
value: Value(return_type, anon_func),
|
|
||||||
}
|
}
|
||||||
}
|
BinaryOperator::Mult => panic!("Not implemented!"),
|
||||||
}
|
},
|
||||||
}
|
BlockExpr(_) => panic!("Not implemented!"),
|
||||||
|
FunctionCall(_) => panic!("Not implemented!"),
|
||||||
impl Drop for IRModule {
|
VariableName(name) => named_vars.get(&name).cloned().unwrap(),
|
||||||
fn drop(&mut self) {
|
Literal(lit) => c_block.get_const(&lit),
|
||||||
// Clean up. Values created in the context mostly get cleaned up there.
|
|
||||||
unsafe {
|
|
||||||
LLVMDisposeBuilder(self.builder);
|
|
||||||
LLVMDumpModule(self.module);
|
|
||||||
LLVMDisposeModule(self.module);
|
|
||||||
LLVMContextDispose(self.context);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct IRFunction {
|
|
||||||
value: Value,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl IRFunction {
|
|
||||||
pub fn add_definition(self, ret: Value, block: IRBlock) {
|
|
||||||
unsafe {
|
|
||||||
LLVMAppendExistingBasicBlock(self.value.1, block.blockref);
|
|
||||||
LLVMBuildRet(block.codegen.builder, ret.1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct IRBlock<'a> {
|
|
||||||
codegen: &'a mut IRModule,
|
|
||||||
blockref: LLVMBasicBlockRef,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'a> IRBlock<'a> {
|
|
||||||
fn create<T: Into<String>>(name: T, codegen: &'a mut IRModule) -> IRBlock<'a> {
|
|
||||||
unsafe {
|
|
||||||
let blockref =
|
|
||||||
LLVMCreateBasicBlockInContext(codegen.context, into_cstring(name).as_ptr());
|
|
||||||
LLVMPositionBuilderAtEnd(codegen.builder, blockref);
|
|
||||||
IRBlock { codegen, blockref }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn get_const(&mut self, literal_type: &Literal) -> Value {
|
|
||||||
unsafe {
|
|
||||||
match *literal_type {
|
|
||||||
Literal::I32(v) => Value(
|
|
||||||
ValueType::I32,
|
|
||||||
LLVMConstInt(
|
|
||||||
LLVMInt32TypeInContext(self.codegen.context),
|
|
||||||
mem::transmute(v as i64),
|
|
||||||
1,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn add(&mut self, lhs: Value, rhs: Value) -> Result<Value, ()> {
|
|
||||||
unsafe {
|
|
||||||
if lhs.0 == rhs.0 {
|
|
||||||
Ok(Value(
|
|
||||||
lhs.0,
|
|
||||||
LLVMBuildAdd(self.codegen.builder, lhs.1, rhs.1, cstr!("tmpadd")),
|
|
||||||
))
|
|
||||||
} else {
|
|
||||||
Err(())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
150
src/llvm_ir.rs
Normal file
150
src/llvm_ir.rs
Normal file
@ -0,0 +1,150 @@
|
|||||||
|
use std::ffi::CString;
|
||||||
|
use std::mem;
|
||||||
|
|
||||||
|
use llvm_sys::{core::*, prelude::*, LLVMBuilder, LLVMContext, LLVMModule};
|
||||||
|
|
||||||
|
use crate::parser::Literal;
|
||||||
|
|
||||||
|
macro_rules! cstr {
|
||||||
|
($string:expr) => {
|
||||||
|
core::ffi::CStr::from_bytes_with_nul_unchecked(concat!($string, "\0").as_bytes()).as_ptr()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
|
pub enum ValueType {
|
||||||
|
I32,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ValueType {
|
||||||
|
unsafe fn get_llvm_type(&self, codegen: &mut IRModule) -> LLVMTypeRef {
|
||||||
|
match *self {
|
||||||
|
Self::I32 => LLVMInt32TypeInContext(codegen.context),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Debug)]
|
||||||
|
#[must_use = "value contains raw pointer and must be inserted somewhere"]
|
||||||
|
pub struct Value(ValueType, LLVMValueRef);
|
||||||
|
|
||||||
|
fn into_cstring<T: Into<String>>(value: T) -> CString {
|
||||||
|
let string = value.into();
|
||||||
|
unsafe { CString::from_vec_with_nul_unchecked((string + "\0").into_bytes()) }
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct IRModule {
|
||||||
|
context: *mut LLVMContext,
|
||||||
|
module: *mut LLVMModule,
|
||||||
|
builder: *mut LLVMBuilder,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl IRModule {
|
||||||
|
pub fn new() -> IRModule {
|
||||||
|
unsafe {
|
||||||
|
// Set up a context, module and builder in that context.
|
||||||
|
let context = LLVMContextCreate();
|
||||||
|
let module = LLVMModuleCreateWithNameInContext(cstr!("testmodule"), context);
|
||||||
|
let builder = LLVMCreateBuilderInContext(context);
|
||||||
|
|
||||||
|
IRModule {
|
||||||
|
context,
|
||||||
|
module,
|
||||||
|
builder,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn create_block(&mut self) -> IRBlock {
|
||||||
|
IRBlock::create("entry", self)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn create_func<T: Into<String>>(&mut self, name: T, return_type: ValueType) -> IRFunction {
|
||||||
|
unsafe {
|
||||||
|
let mut argts = [];
|
||||||
|
let func_type = LLVMFunctionType(
|
||||||
|
return_type.get_llvm_type(self),
|
||||||
|
argts.as_mut_ptr(),
|
||||||
|
argts.len() as u32,
|
||||||
|
0,
|
||||||
|
);
|
||||||
|
|
||||||
|
let anon_func = LLVMAddFunction(self.module, into_cstring(name).as_ptr(), func_type);
|
||||||
|
IRFunction {
|
||||||
|
value: Value(return_type, anon_func),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Drop for IRModule {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
// Clean up. Values created in the context mostly get cleaned up there.
|
||||||
|
unsafe {
|
||||||
|
LLVMDisposeBuilder(self.builder);
|
||||||
|
LLVMDumpModule(self.module);
|
||||||
|
LLVMDisposeModule(self.module);
|
||||||
|
LLVMContextDispose(self.context);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct IRFunction {
|
||||||
|
value: Value,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl IRFunction {
|
||||||
|
pub fn add_definition(self, ret: Value, block: IRBlock) {
|
||||||
|
unsafe {
|
||||||
|
LLVMAppendExistingBasicBlock(self.value.1, block.blockref);
|
||||||
|
LLVMBuildRet(block.module.builder, ret.1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct IRBlock<'a> {
|
||||||
|
module: &'a mut IRModule,
|
||||||
|
blockref: LLVMBasicBlockRef,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> IRBlock<'a> {
|
||||||
|
fn create<T: Into<String>>(name: T, codegen: &'a mut IRModule) -> IRBlock<'a> {
|
||||||
|
unsafe {
|
||||||
|
let blockref =
|
||||||
|
LLVMCreateBasicBlockInContext(codegen.context, into_cstring(name).as_ptr());
|
||||||
|
LLVMPositionBuilderAtEnd(codegen.builder, blockref);
|
||||||
|
IRBlock {
|
||||||
|
module: codegen,
|
||||||
|
blockref,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn get_const(&mut self, literal_type: &Literal) -> Value {
|
||||||
|
unsafe {
|
||||||
|
match *literal_type {
|
||||||
|
Literal::I32(v) => Value(
|
||||||
|
ValueType::I32,
|
||||||
|
LLVMConstInt(
|
||||||
|
LLVMInt32TypeInContext(self.module.context),
|
||||||
|
mem::transmute(v as i64),
|
||||||
|
1,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn add(&mut self, lhs: Value, rhs: Value) -> Result<Value, ()> {
|
||||||
|
unsafe {
|
||||||
|
if lhs.0 == rhs.0 {
|
||||||
|
Ok(Value(
|
||||||
|
lhs.0,
|
||||||
|
LLVMBuildAdd(self.module.builder, lhs.1, rhs.1, cstr!("tmpadd")),
|
||||||
|
))
|
||||||
|
} else {
|
||||||
|
Err(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
67
src/main.rs
67
src/main.rs
@ -1,14 +1,4 @@
|
|||||||
use std::collections::HashMap;
|
use crate::{lexer::Token, parser::TopLevelStatement, token_stream::TokenStream};
|
||||||
|
|
||||||
use codegen::IRBlock;
|
|
||||||
use parser::Expression;
|
|
||||||
|
|
||||||
use crate::{
|
|
||||||
codegen::{IRModule, Value},
|
|
||||||
lexer::Token,
|
|
||||||
parser::{FunctionDefinition, Literal, TopLevelStatement},
|
|
||||||
token_stream::TokenStream,
|
|
||||||
};
|
|
||||||
|
|
||||||
pub static EASIEST: &str = include_str!("../reid/easiest.reid");
|
pub static EASIEST: &str = include_str!("../reid/easiest.reid");
|
||||||
pub static EASY: &str = include_str!("../reid/easy.reid");
|
pub static EASY: &str = include_str!("../reid/easy.reid");
|
||||||
@ -17,6 +7,7 @@ pub static HARD: &str = include_str!("../reid/hard.reid");
|
|||||||
|
|
||||||
mod codegen;
|
mod codegen;
|
||||||
mod lexer;
|
mod lexer;
|
||||||
|
mod llvm_ir;
|
||||||
mod parser;
|
mod parser;
|
||||||
mod token_stream;
|
mod token_stream;
|
||||||
|
|
||||||
@ -41,57 +32,5 @@ fn main() {
|
|||||||
statements.push(statement);
|
statements.push(statement);
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut c = IRModule::new();
|
codegen::codegen(statements);
|
||||||
for statement in statements {
|
|
||||||
match statement {
|
|
||||||
TopLevelStatement::FunctionDefinition(FunctionDefinition(sig, block)) => {
|
|
||||||
let mut named_vars: HashMap<String, Value> = HashMap::new();
|
|
||||||
|
|
||||||
let func = c.create_func(sig.name, codegen::ValueType::I32);
|
|
||||||
let mut c_block = c.create_block();
|
|
||||||
|
|
||||||
for stmt in block.0 {
|
|
||||||
match stmt {
|
|
||||||
parser::BlockLevelStatement::Let(let_statement) => {
|
|
||||||
let value = codegen_exp(&mut c_block, &named_vars, let_statement.1);
|
|
||||||
named_vars.insert(let_statement.0, value);
|
|
||||||
}
|
|
||||||
parser::BlockLevelStatement::Return(_) => panic!("Should never exist!"),
|
|
||||||
parser::BlockLevelStatement::Import(_) => {}
|
|
||||||
parser::BlockLevelStatement::Expression(_) => {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let value = if let Some(exp) = block.1 {
|
|
||||||
codegen_exp(&mut c_block, &named_vars, exp)
|
|
||||||
} else {
|
|
||||||
c_block.get_const(&Literal::I32(0))
|
|
||||||
};
|
|
||||||
func.add_definition(value, c_block);
|
|
||||||
}
|
|
||||||
TopLevelStatement::Import(_) => {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn codegen_exp(
|
|
||||||
c_block: &mut IRBlock,
|
|
||||||
named_vars: &HashMap<String, Value>,
|
|
||||||
expression: Expression,
|
|
||||||
) -> Value {
|
|
||||||
use parser::Expression::*;
|
|
||||||
match expression {
|
|
||||||
Binop(op, lhs, rhs) => match op {
|
|
||||||
parser::BinaryOperator::Add => {
|
|
||||||
let lhs = codegen_exp(c_block, named_vars, *lhs);
|
|
||||||
let rhs = codegen_exp(c_block, named_vars, *rhs);
|
|
||||||
c_block.add(lhs, rhs).unwrap()
|
|
||||||
}
|
|
||||||
parser::BinaryOperator::Mult => panic!("Not implemented!"),
|
|
||||||
},
|
|
||||||
BlockExpr(_) => panic!("Not implemented!"),
|
|
||||||
FunctionCall(_) => panic!("Not implemented!"),
|
|
||||||
VariableName(name) => named_vars.get(&name).cloned().unwrap(),
|
|
||||||
Literal(lit) => c_block.get_const(&lit),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user