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
use std::fmt;

use debris_common::{CompilationId, Span};

use crate::{
    mir_builder::MirSingletons,
    mir_nodes::MirNode,
    mir_object::MirObjectId,
    namespace::{MirLocalNamespace, MirLocalNamespaceId, MirNamespace},
};

pub struct MirContext {
    pub id: MirContextId,
    /// The parent context of this context
    pub super_context_id: Option<MirContextId>,
    pub nodes: Vec<MirNode>,
    pub kind: MirContextKind,
    pub return_values_id: ReturnValuesDataId,
    pub return_context: ReturnContext,
    pub local_namespace_id: MirLocalNamespaceId,
    pub has_early_returned: bool,
}

impl MirContext {
    pub fn new(
        id: MirContextId,
        super_context_id: Option<MirContextId>,
        local_namespace_id: MirLocalNamespaceId,
        kind: MirContextKind,
        return_values_id: ReturnValuesDataId,
        return_context: ReturnContext,
    ) -> Self {
        MirContext {
            id,
            super_context_id,
            nodes: Default::default(),
            kind,
            return_values_id,
            return_context,
            local_namespace_id,
            has_early_returned: false,
        }
    }

    pub fn local_namespace<'a>(
        &self,
        global_namespace: &'a mut MirNamespace,
    ) -> &'a mut MirLocalNamespace {
        global_namespace.get_local_namespace_mut(self.local_namespace_id)
    }
}

impl MirContext {
    pub fn return_values<'a>(&self, arena: &'a ReturnValuesArena) -> &'a ReturnValuesData {
        arena.get(self.return_values_id)
    }

    pub fn return_values_mut<'a>(
        &self,
        arena: &'a mut ReturnValuesArena,
    ) -> &'a mut ReturnValuesData {
        arena.get_mut(self.return_values_id)
    }

    pub fn debug<'a>(&'a self, return_values: &'a ReturnValuesArena) -> MirContextDebug<'a> {
        MirContextDebug {
            context: self,
            return_values,
        }
    }
}

pub struct MirContextDebug<'a> {
    context: &'a MirContext,
    return_values: &'a ReturnValuesArena,
}

impl fmt::Debug for MirContextDebug<'_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let return_value = self
            .return_values
            .get(self.context.return_values_id)
            .return_value();
        let context_id = self.context.id;
        writeln!(f, "Context {context_id:?} -> {return_value:?}:")?;

        for node in &self.context.nodes {
            writeln!(f, "{node:?}")?;
        }

        match self.context.return_context {
            ReturnContext::Specific(context_id) => writeln!(f, "Next Context: {context_id:?}"),
            ReturnContext::ManuallyHandled(info_context_id) => {
                writeln!(f, "Return (Default is {info_context_id:?})",)
            }
            ReturnContext::Pass => writeln!(f, "Return"),
        }?;

        writeln!(f)
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum MirContextKind {
    Struct,
    Block,
    BlockConditionalRuntime,
    BlockConditionalComptime,
    Module,
    FunctionRuntime,
    FunctionComptime,
    Loop,
}

impl MirContextKind {
    pub fn default_return_value(&self, singletons: &MirSingletons) -> MirObjectId {
        use MirContextKind::*;
        match self {
            Struct
            | Block
            | BlockConditionalRuntime
            | BlockConditionalComptime
            | FunctionRuntime
            | FunctionComptime
            | Module => singletons.null,
            Loop => singletons.never,
        }
    }

    pub fn is_runtime(&self) -> bool {
        use MirContextKind::*;
        match self {
            FunctionComptime | Struct | Block | BlockConditionalComptime | Module => false,
            FunctionRuntime | BlockConditionalRuntime | Loop => true,
        }
    }
}

#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)]
pub struct ReturnValuesDataId(usize);

#[derive(Debug, Default)]
pub struct ReturnValuesArena {
    return_values: Vec<ReturnValuesData>,
}

impl ReturnValuesArena {
    pub fn add(&mut self, return_values_data: ReturnValuesData) -> ReturnValuesDataId {
        self.return_values.push(return_values_data);
        ReturnValuesDataId(self.return_values.len() - 1)
    }

    pub fn get(&self, id: ReturnValuesDataId) -> &ReturnValuesData {
        &self.return_values[id.0]
    }

    pub fn get_mut(&mut self, id: ReturnValuesDataId) -> &mut ReturnValuesData {
        &mut self.return_values[id.0]
    }
}

/// Stores returns values a given context can return
/// Multiple contexts can share the same return values data
#[derive(Debug)]
pub struct ReturnValuesData {
    pub default_return: MirObjectId,
    /// The id of the explicitly returned value and the span where it was declared
    pub explicit_return: Option<(MirObjectId, Span)>,
    pub unconditionally_returned: bool,
}

impl ReturnValuesData {
    pub fn new(default_return: MirObjectId) -> Self {
        ReturnValuesData {
            default_return,
            explicit_return: None,
            unconditionally_returned: false,
        }
    }

    /// Returns the id of the return value
    /// This should be the first return value in a function
    pub fn return_value(&self) -> MirObjectId {
        self.explicit_return
            .map_or(self.default_return, |(obj_id, _)| obj_id)
    }

    pub fn return_span(&self) -> Option<Span> {
        self.explicit_return.as_ref().map(|(_, span)| *span)
    }
}

#[derive(Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct MirContextId {
    pub(super) compilation_id: CompilationId,
    pub(super) id: u32,
}

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

/// Specifies where to jump to when all commands of a context are run
#[derive(Debug, Clone, Copy)]
pub enum ReturnContext {
    /// Don't jump anywhere, just return to the caller
    Pass,
    /// Don't jump anywhere, because the jump was handled manually.
    /// This is used to store some information about the target return context.
    ManuallyHandled(MirContextId),
    /// Jump to a specific context
    Specific(MirContextId),
}

impl ReturnContext {
    pub fn set_handled_manually(&mut self) {
        if let ReturnContext::Specific(id) = self {
            *self = ReturnContext::ManuallyHandled(*id);
        }
    }
}