summaryrefslogtreecommitdiff
path: root/src/semantic/analysis.rs
blob: 973e7031394bbe6c5770411d1df0d9f6e617d48a (plain)
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
// Copyright ⓒ 2017 David Li.
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

use ::ast::{self, WithLocation};
use super::environment;
use super::frame;
use super::ir;
use super::translate::{self, Level, Translate};
use super::types::{self, Ty};

#[derive(Debug)]
pub enum TypeError {
    Unimplemented,
    LengthMismatch {
        expected: usize,
        actual: usize,
    },
    Mismatch {
        expected: Ty,
        actual: Ty,
    },
    UnboundName,
}

type TypeEnvironment<'a> = environment::Environment<'a, String, Ty>;
pub type Result<T> = ::std::result::Result<T, WithLocation<TypeError>>;

pub fn translate<'a, F: frame::Frame>(
    translate: &mut Translate<F>,
    level: &mut Level<'a, F>,
    program: &ast::Program)
    -> Result<(translate::Expression, Ty)> {
    let mut venv = TypeEnvironment::new(None);
    let mut tenv = TypeEnvironment::new(None);
    tenv.add_binding("int".into(), Ty::Int);
    tenv.add_binding("string".into(), Ty::String);
    trans_exp(translate, level, &mut venv, &mut tenv, &*program.0)
}

macro_rules! err {
    ($exp: expr, $err: expr) => {
        Err(WithLocation::new($err, $exp.start, $exp.end))
    }
}

fn trans_ty<'a>(
    venv: &mut TypeEnvironment<'a>,
    tenv: &mut TypeEnvironment<'a>,
    ty: &WithLocation<ast::Ty>) -> Result<Ty> {
    match ty.value {
        ast::Ty::Name(ref name) => {
            tenv.lookup(&name)
                .map(|v| v.clone())
                .ok_or(WithLocation::new(TypeError::UnboundName, ty.start, ty.end))
        }
        ast::Ty::Array(ref inner_ty) => {
            trans_ty(venv, tenv, &inner_ty)
        },
        ast::Ty::Record(ref fields) => {
            let mut result = vec![];
            for field in fields {
                result.push(types::RecordField::new(
                    field.name.clone(),
                    trans_ty(venv, tenv, &field.ty)?));
            }
            Ok(Ty::Record(result))
        },
    }
}

fn trans_decl<'a, 'b, F: frame::Frame>(
    tr: &mut Translate<F>,
    level: &mut Level<'b, F>,
    venv: &mut TypeEnvironment<'a>,
    tenv: &mut TypeEnvironment<'a>,
    decl: &WithLocation<ast::Declaration>) -> Result<Ty> {
    match decl.declaration {
        ast::DeclarationBody::Fun { ref ty, ref params, ref body } => {
            let declared_ty = if let &Some(ref ty) = ty {
                Some(ast::WithLocation::new(trans_ty(venv, tenv, &ty)?, ty.start, ty.end))
            } else { None };

            let mut new_venv = TypeEnvironment::new(Some(venv));
            let mut new_tenv = TypeEnvironment::new(Some(tenv));
            let mut arg_types = vec![];
            for param in params.iter() {
                let arg_ty = trans_ty(&mut new_venv, &mut new_tenv, &param.ty)?;
                arg_types.push(arg_ty.clone());
                new_venv.add_binding(param.name.value.clone(), arg_ty);
            }

            let (body_exp, body_ty) =
                trans_exp(tr, level, &mut new_venv, &mut new_tenv, &*body)?;

            if let Some(decl_ty) = declared_ty {
                if &decl_ty.value != &body_ty {
                    return err!(decl_ty, TypeError::Mismatch {
                        expected: decl_ty.value,
                        actual: body_ty,
                    });
                }
            }

            Ok(Ty::Function(arg_types, Box::new(body_ty)))
        }
        ast::DeclarationBody::Ty { ref ty } => {
            trans_ty(venv, tenv, ty)
        }
        ast::DeclarationBody::Var { ref ty, ref value } => {
            let (var_exp, actual_ty) =
                trans_exp(tr, level, venv, tenv, &value)?;
            if let &Some(ref ty) = ty {
                let decl_ty = trans_ty(venv, tenv, &ty)?;
                if decl_ty != actual_ty {
                    return err!(ty, TypeError::Mismatch {
                        expected: decl_ty,
                        actual: actual_ty,
                    });
                }
            }
            Ok(actual_ty)
        }
    }
}

fn trans_exp<'a, 'b, F: frame::Frame>(
    tr: &mut Translate<F>,
    level: &mut Level<'b, F>,
    venv: &mut TypeEnvironment<'a>,
    tenv: &mut TypeEnvironment<'a>,
    exp: &WithLocation<ast::Expression>)
    -> Result<(translate::Expression, Ty)> {
    use ast::Expression::*;

    match &exp.value {
        &Let(ref decls, ref body) => {
            let mut new_venv = TypeEnvironment::new(Some(venv));
            let mut new_tenv = TypeEnvironment::new(Some(tenv));
            for decl in decls.iter() {
                let decl_ty = trans_decl(tr, level, &mut new_venv, &mut new_tenv, decl)?;
                match decl.declaration {
                    ast::DeclarationBody::Fun { .. } | ast::DeclarationBody::Var { .. } => {
                        new_venv.add_binding(decl.name.clone(), decl_ty);
                    }
                    ast::DeclarationBody::Ty { .. } => {
                        new_tenv.add_binding(decl.name.clone(), decl_ty);
                    }
                }
            }
            trans_exp(tr, level, &mut new_venv, &mut new_tenv, &*body)
        },
        &Call(ref name, ref args) => {
            let mut arg_types = vec![];
            for arg in args {
                arg_types.push(trans_exp(tr, level, venv, tenv, arg)?);
            }

            let fun_ty = venv.lookup(name)
                .ok_or(WithLocation::new(TypeError::UnboundName,
                                         exp.start, exp.end))?;
            match fun_ty {
                &Ty::Function(ref expected_args, ref result) => {
                    if expected_args.len() != arg_types.len() {
                        return err!(exp, TypeError::LengthMismatch {
                            expected: expected_args.len(),
                            actual: arg_types.len(),
                        });
                    }
                    for (i, (&(_, ref provided_ty), expected_ty)) in
                        arg_types.iter().zip(expected_args).enumerate() {
                        if provided_ty != expected_ty {
                            return err!(args[i], TypeError::Mismatch {
                                expected: expected_ty.clone(),
                                actual: provided_ty.clone(),
                            })
                        }
                    }
                    err!(exp, TypeError::Unimplemented)
                    // Ok((**result).clone())
                },
                otherwise => {
                    err!(exp, TypeError::Mismatch {
                        // TODO: better way to handle this
                        expected: Ty::Function(
                            arg_types.into_iter().map(|v| v.1).collect(),
                            Box::new(Ty::Nil)),
                        actual: otherwise.clone(),
                    })
                }
            }
        },
        &UnaryOp(ref op, ref operand) => {
            use ast::UnaryOp::*;
            let (operand_exp, operand_ty) = trans_exp(tr, level, venv, tenv, operand)?;
            match op {
                &Neg | &Pos => {
                    match operand_ty {
                        Ty::Int => {
                            err!(exp, TypeError::Unimplemented)
                            // Ok(Ty::Int)
                        }
                        other => {
                            err!(operand, TypeError::Mismatch {
                                expected: Ty::Int,
                                actual: other,
                            })
                        }
                    }
                }
                &Not => {
                    err!(exp, TypeError::Unimplemented)
                }
            }
        },
        &BinOp(ref op, ref left, ref right) => {
            use ast::BinOp::*;
            let (left_exp, left_ty) = trans_exp(tr, level, venv, tenv, left)?;
            let (right_exp, right_ty) = trans_exp(tr, level, venv, tenv, right)?;
            match op {
                &Add => {
                    match (left_ty, right_ty) {
                        (Ty::Int, Ty::Int) => {
                            Ok((tr.make_binop(ir::BinOp::Plus, left_exp, right_exp),
                                Ty::Int))
                        }
                        (Ty::String, Ty::String) => {
                            err!(exp, TypeError::Unimplemented)
                            // Ok(Ty::String)
                        }
                        (Ty::Int, other) | (other, Ty::Int) => {
                            err!(right, TypeError::Mismatch {
                                expected: Ty::Int,
                                actual: other,
                            })
                        }
                        (Ty::String, other) | (other, Ty::String) => {
                            err!(right, TypeError::Mismatch {
                                expected: Ty::String,
                                actual: other,
                            })
                        }
                        _ => {
                            err!(exp, TypeError::Unimplemented)
                        }
                    }
                }
                _ => {
                    err!(exp, TypeError::Unimplemented)
                }
            }
        },
        &Number(n) => Ok((tr.make_num(n), Ty::Int)),
        &String(_) => err!(exp, TypeError::Unimplemented),
        // &String(_) => Ok(Ty::String),
        &Name(ref name) => {
            if let Some(ty) = venv.lookup(name) {
                err!(exp, TypeError::Unimplemented)
                // Ok(ty.clone())
            }
            else {
                err!(exp, TypeError::UnboundName)
            }
        },
        &Nil => {
            Err(WithLocation::new(TypeError::Unimplemented, exp.start, exp.end))
        },
    }
}