1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
use std::{fs, path};
use codespan_reporting::diagnostic::Diagnostic;
use arret_syntax::span::FileId;
use arret_compiler::{emit_diagnostics_to_stderr, print_program_mir, CompileCtx};
const MIR_OUTPUT_TYPE: arret_compiler::OutputType = arret_compiler::OutputType::None;
fn try_compile_input_file(
ccx: &CompileCtx,
options: arret_compiler::GenProgramOptions<'_>,
input_file: &arret_compiler::SourceFile,
output_path: &path::Path,
debug_info: bool,
) -> Result<(), Vec<Diagnostic<FileId>>> {
let arret_compiler::EvaluableProgram {
ehx,
main_export_id,
linked_libraries,
} = arret_compiler::program_to_evaluable(ccx, input_file)?;
let mir_program = ehx.into_built_program(main_export_id)?;
if options.output_type() == MIR_OUTPUT_TYPE {
let mut output_file = fs::File::create(output_path).unwrap();
print_program_mir(&mut output_file, &mir_program, Some(ccx.source_loader())).unwrap();
return Ok(());
}
let debug_source_loader = if debug_info {
Some(ccx.source_loader())
} else {
None
};
arret_compiler::gen_program(
options,
&linked_libraries,
&mir_program,
output_path,
debug_source_loader,
);
Ok(())
}
pub fn compile_input_file(
ccx: &CompileCtx,
input_file: &arret_compiler::SourceFile,
target_triple: Option<&str>,
output_path: &path::Path,
debug_info: bool,
) -> bool {
use std::ffi;
let output_type = match output_path.extension().and_then(ffi::OsStr::to_str) {
Some("mir") => MIR_OUTPUT_TYPE,
Some("ll") => arret_compiler::OutputType::LlvmIr,
Some("s") => arret_compiler::OutputType::Assembly,
Some("o") => arret_compiler::OutputType::Object,
_ => arret_compiler::OutputType::Executable,
};
let options = arret_compiler::GenProgramOptions::new()
.with_target_triple(target_triple)
.with_output_type(output_type)
.with_llvm_opt(ccx.enable_optimisations());
let result = try_compile_input_file(ccx, options, input_file, output_path, debug_info);
if let Err(diagnostics) = result {
emit_diagnostics_to_stderr(ccx.source_loader(), diagnostics);
false
} else {
true
}
}