forked from FuelLabs/sway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathir_generation.rs
106 lines (94 loc) · 2.78 KB
/
ir_generation.rs
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
pub(crate) mod compile;
pub mod const_eval;
mod convert;
mod function;
mod lexical_map;
mod purity;
pub mod storage;
mod types;
use sway_error::error::CompileError;
use sway_ir::{Context, Kind};
use sway_types::span::Span;
pub(crate) use purity::{check_function_purity, PurityEnv};
use crate::{language::ty, Engines};
pub fn compile_program(
program: &ty::TyProgram,
include_tests: bool,
engines: Engines<'_>,
) -> Result<Context, CompileError> {
let declaration_engine = engines.de();
let test_fns = match include_tests {
true => program.test_fns(declaration_engine).collect(),
false => vec![],
};
let ty::TyProgram {
kind,
root,
logged_types,
messages_types,
declarations,
..
} = program;
let logged_types = logged_types
.iter()
.map(|(log_id, type_id)| (*type_id, *log_id))
.collect();
let messages_types = messages_types
.iter()
.map(|(message_id, type_id)| (*type_id, *message_id))
.collect();
let mut ctx = Context::default();
ctx.program_kind = match kind {
ty::TyProgramKind::Script { .. } => Kind::Script,
ty::TyProgramKind::Predicate { .. } => Kind::Predicate,
ty::TyProgramKind::Contract { .. } => Kind::Contract,
ty::TyProgramKind::Library { .. } => Kind::Library,
};
match kind {
// predicates and scripts have the same codegen, their only difference is static
// type-check time checks.
ty::TyProgramKind::Script { main_function } => compile::compile_script(
engines,
&mut ctx,
main_function,
&root.namespace,
declarations,
&logged_types,
&messages_types,
&test_fns,
),
ty::TyProgramKind::Predicate { main_function } => compile::compile_predicate(
engines,
&mut ctx,
main_function,
&root.namespace,
declarations,
&logged_types,
&messages_types,
&test_fns,
),
ty::TyProgramKind::Contract { abi_entries } => compile::compile_contract(
&mut ctx,
abi_entries,
&root.namespace,
declarations,
&logged_types,
&messages_types,
&test_fns,
engines,
),
ty::TyProgramKind::Library { .. } => compile::compile_library(
engines,
&mut ctx,
&root.namespace,
declarations,
&logged_types,
&messages_types,
&test_fns,
),
}?;
//println!("{ctx}");
ctx.verify().map_err(|ir_error: sway_ir::IrError| {
CompileError::InternalOwned(ir_error.to_string(), Span::dummy())
})
}