mirror of
https://github.com/edg-l/edlang.git
synced 2024-11-09 09:38:24 +00:00
71 lines
2 KiB
Rust
71 lines
2 KiB
Rust
use std::{
|
|
path::{Path, PathBuf},
|
|
process::Child,
|
|
};
|
|
|
|
use ariadne::Source;
|
|
use edlang_driver::linker::{link_binary, link_shared_lib};
|
|
use edlang_lowering::lower_modules;
|
|
use edlang_session::{DebugInfo, OptLevel, Session};
|
|
use tempfile::TempDir;
|
|
|
|
#[derive(Debug)]
|
|
pub struct CompileResult {
|
|
pub folder: TempDir,
|
|
pub object_file: PathBuf,
|
|
pub binary_file: PathBuf,
|
|
}
|
|
|
|
pub fn compile_program(
|
|
source: &str,
|
|
name: &str,
|
|
library: bool,
|
|
) -> Result<CompileResult, Box<dyn std::error::Error>> {
|
|
let module = edlang_parser::parse_ast(source, name).unwrap();
|
|
|
|
let test_dir = tempfile::tempdir().unwrap();
|
|
let test_dir_path = test_dir.path().canonicalize()?;
|
|
let output_file = test_dir_path.join(PathBuf::from(name));
|
|
let output_file = if library {
|
|
output_file.with_extension(Session::get_platform_library_ext())
|
|
} else if cfg!(target_os = "windows") {
|
|
output_file.with_extension("exe")
|
|
} else {
|
|
output_file.with_extension("")
|
|
};
|
|
|
|
let input_file = output_file.with_extension("ed");
|
|
std::fs::write(&input_file, source)?;
|
|
|
|
let session = Session {
|
|
file_paths: vec![input_file],
|
|
debug_info: DebugInfo::Full,
|
|
optlevel: OptLevel::Default,
|
|
sources: vec![Source::from(source.to_string())],
|
|
library,
|
|
output_file,
|
|
output_llvm: false,
|
|
output_asm: false,
|
|
};
|
|
|
|
let program_ir = lower_modules(&[module]).unwrap();
|
|
|
|
let object_path = edlang_codegen_llvm::compile(&session, &program_ir).unwrap();
|
|
|
|
if library {
|
|
link_shared_lib(&[object_path.clone()], &session.output_file).unwrap();
|
|
} else {
|
|
link_binary(&[object_path.clone()], &session.output_file).unwrap();
|
|
}
|
|
|
|
Ok(CompileResult {
|
|
folder: test_dir,
|
|
object_file: object_path,
|
|
binary_file: session.output_file,
|
|
})
|
|
}
|
|
|
|
pub fn run_program(program: &Path, args: &[&str]) -> Result<Child, std::io::Error> {
|
|
std::process::Command::new(program).args(args).spawn()
|
|
}
|