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
use debris_common::{FxIndexMap, Ident, Span};
use rustc_hash::FxHashMap;

use std::fmt::{self, Formatter};
use std::rc::Rc;

use crate::{mir_context::MirContextId, mir_object::MirObjectId};

pub enum MirPrimitive {
    Int(i32),
    Bool(bool),
    String(Rc<str>),
    FormatString(MirFormatString),
    Function(MirFunction),
    FunctionClass(Vec<MirObjectId>, Option<MirObjectId>),
    Module(MirModule),
    Tuple(Vec<MirObjectId>),
    TupleClass(Vec<(MirObjectId, Span)>),
    StructType(MirStructType),
    Struct(MirStruct),
    Null,
    Never,
}

impl fmt::Debug for MirPrimitive {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        match self {
            MirPrimitive::Int(i) => write!(f, "Int({i})"),
            MirPrimitive::Bool(b) => write!(f, "Bool({b})"),
            MirPrimitive::String(s) => write!(f, "String({s})"),
            MirPrimitive::FormatString(fs) => write!(f, "FormatString({fs:?})"),
            MirPrimitive::Function(func) => write!(f, "Function({func:?})"),
            MirPrimitive::FunctionClass(args, ret) => {
                write!(f, "FunctionClass({args:?}, {ret:?})")
            }
            MirPrimitive::Module(m) => write!(f, "Module({m:?})"),
            MirPrimitive::Tuple(t) => write!(f, "Tuple({t:?})"),
            MirPrimitive::TupleClass(t) => {
                write!(f, "TupleClass([")?;

                let mut iter = t.iter();
                if let Some((id, _)) = iter.next() {
                    write!(f, "{id:?}")?;

                    for (id, _span) in iter {
                        write!(f, ", {id:?}")?;
                    }
                }

                write!(f, "])")
            }
            MirPrimitive::StructType(strukt) => write!(f, "StructType({strukt:?})"),
            MirPrimitive::Struct(strukt) => write!(f, "Struct({strukt:?})"),
            MirPrimitive::Null => write!(f, "Null"),
            MirPrimitive::Never => write!(f, "Never"),
        }
    }
}

pub struct MirFormatString(pub Vec<MirFormatStringComponent>);

impl From<Vec<MirFormatStringComponent>> for MirFormatString {
    fn from(val: Vec<MirFormatStringComponent>) -> Self {
        MirFormatString(val)
    }
}

impl fmt::Debug for MirFormatString {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{:?}", self.0)
    }
}

pub enum MirFormatStringComponent {
    String(Rc<str>),
    Value(MirObjectId),
}

impl fmt::Debug for MirFormatStringComponent {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        match self {
            MirFormatStringComponent::String(string) => write!(f, "\"{string}\""),
            MirFormatStringComponent::Value(val) => write!(f, "{val:?}"),
        }
    }
}

pub struct MirFunctionParameter {
    pub span: Span,
    pub typ: MirObjectId,
    pub value: MirObjectId,
}

pub struct MirFunction {
    pub signature_span: Span,
    pub context_id: MirContextId,
    pub is_comptime: bool,
    pub name: Ident,
    pub parameters: Vec<MirFunctionParameter>,
    pub return_type: Option<MirObjectId>,
    /// The span of the return type definition
    pub return_type_span: Span,
    /// The span of the expression that defined the return type
    pub return_span: Span,
}

impl fmt::Debug for MirFunction {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "fn {}(", self.name)?;
        for (index, parameter) in self.parameters.iter().enumerate() {
            if index != 0 {
                write!(f, ", ")?;
            }
            write!(f, "{:?}: {:?}", parameter.value, parameter.typ)?;
        }
        write!(f, ") ")?;
        if let Some(return_type) = &self.return_type {
            write!(f, "-> {return_type:?} ")?;
        }
        write!(f, "{{{:?}}}", self.context_id)
    }
}

pub struct MirStructType {
    pub name: Ident,
    pub properties: FxIndexMap<Ident, (MirObjectId, Span)>,
    pub context_id: MirContextId,
}

impl fmt::Debug for MirStructType {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "struct {} {{ ", self.name)?;

        let mut iter = self.properties.iter();
        if let Some((name, (type_id, _))) = iter.next() {
            write!(f, "{name}: {type_id:?}")?;

            for (name, (type_id, _)) in iter {
                write!(f, ", {name}: {type_id:?}")?;
            }
        }

        write!(f, "; {{{:?}}} }}", self.context_id)
    }
}

pub struct MirStruct {
    pub base_span: Span,
    pub struct_type: MirObjectId,
    pub values: FxHashMap<Ident, (MirObjectId, Span)>,
}

impl fmt::Debug for MirStruct {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "{:?} {{ ", self.struct_type)?;

        let mut iter = self.values.iter();
        if let Some((name, (type_id, _))) = iter.next() {
            write!(f, "{name}: {type_id:?}")?;

            for (name, (type_id, _)) in iter {
                write!(f, ", {name}: {type_id:?}")?;
            }
        }

        write!(f, " }}")
    }
}

pub struct MirModule {
    pub span: Span,
    pub last_item_span: Span,
    pub context_id: MirContextId,
    pub ident: Ident,
}

impl fmt::Debug for MirModule {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        write!(f, "mod {} {{{:?}}}", self.ident, self.context_id)
    }
}