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
use crate::hir;
use crate::ty;
use crate::ty::purity::Purity;
use crate::ty::Ty;
pub fn expr_can_side_effect(expr: &hir::Expr<hir::Inferred>) -> bool {
use hir::ExprKind;
match &expr.kind {
ExprKind::LocalRef(_, _)
| ExprKind::ExportRef(_, _)
| ExprKind::Lit(_)
| ExprKind::EqPred(_)
| ExprKind::TyPred(_, _)
| ExprKind::RecordCons(_, _)
| ExprKind::FieldAccessor(_)
| ExprKind::Fun(_)
| ExprKind::RustFun(_) => false,
ExprKind::Do(exprs) => exprs.iter().any(expr_can_side_effect),
ExprKind::MacroExpand(_, inner) => expr_can_side_effect(inner),
ExprKind::Cond(cond) => {
expr_can_side_effect(&cond.test_expr)
|| expr_can_side_effect(&cond.true_expr)
|| expr_can_side_effect(&cond.false_expr)
}
ExprKind::Let(let_expr) => {
expr_can_side_effect(&let_expr.value_expr) || expr_can_side_effect(&let_expr.body_expr)
}
ExprKind::App(app) => {
if let ty::Ref::Fixed(Ty::Fun(ref fun_type)) = app.fun_expr.result_ty {
fun_type.top_fun().purity() != &Purity::Pure.into()
|| fun_type.ret().is_never()
|| app.fixed_arg_exprs.iter().any(expr_can_side_effect)
|| app.rest_arg_expr.iter().any(expr_can_side_effect)
} else {
true
}
}
ExprKind::Recur(_) => {
true
}
}
}
#[cfg(test)]
mod test {
use super::*;
use crate::source::EMPTY_SPAN;
use crate::ty::ty_args::TyArgs;
#[test]
fn pure_app_expr() {
let app_expr = hir::Expr::<hir::Inferred> {
result_ty: ty::List::empty().into(),
kind: hir::ExprKind::App(Box::new(hir::App {
span: EMPTY_SPAN,
fun_expr: hir::Expr {
result_ty: ty::Fun::new_mono(
ty::List::empty(),
Purity::Pure.into(),
ty::List::empty().into(),
)
.into(),
kind: hir::ExprKind::Do(vec![]),
},
ty_args: TyArgs::empty(),
fixed_arg_exprs: vec![],
rest_arg_expr: None,
})),
};
assert!(!expr_can_side_effect(&app_expr));
}
#[test]
fn impure_app_expr() {
let app_expr = hir::Expr::<hir::Inferred> {
result_ty: ty::List::empty().into(),
kind: hir::ExprKind::App(Box::new(hir::App {
span: EMPTY_SPAN,
fun_expr: hir::Expr {
result_ty: ty::Fun::new_mono(
ty::List::empty(),
Purity::Impure.into(),
ty::List::empty().into(),
)
.into(),
kind: hir::ExprKind::Do(vec![]),
},
ty_args: TyArgs::empty(),
fixed_arg_exprs: vec![],
rest_arg_expr: None,
})),
};
assert!(expr_can_side_effect(&app_expr));
}
}