bfc 1.12.0

An industrial-grade brainfuck compiler
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
//! bfir defines an AST for BF. This datastructure represents the
//! original BF source code with position data so we can find the
//! source lines from a portion of AST.
//!
//! It also provides functions for generating ASTs from source code,
//! producing good error messages on malformed inputs.

use std::collections::HashMap;
use std::fmt;
use std::num::Wrapping;

use self::AstNode::*;

/// `BfValue` represents the size of a single BF cell. BF requires
/// this to be at least one byte, we provide a BF cell of exactly one
/// byte.
pub type BfValue = Wrapping<i8>;

/// An inclusive range used for tracking positions in source code.
#[derive(PartialEq, Eq, Clone, Copy)]
pub struct Position {
    pub start: usize,
    pub end: usize,
}

impl fmt::Debug for Position {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        if self.start == self.end {
            write!(f, "{}", self.start)
        } else {
            write!(f, "{}-{}", self.start, self.end)
        }
    }
}

pub trait Combine<T> {
    fn combine(&self, _: T) -> T;
}

impl Combine<Option<Position>> for Option<Position> {
    fn combine(&self, other: Self) -> Self {
        match (*self, other) {
            (Some(pos1), Some(pos2)) => {
                let (first_pos, second_pos) = if pos1.start <= pos2.start {
                    (pos1, pos2)
                } else {
                    (pos2, pos1)
                };

                // If they're adjacent positions, we can merge them.
                if first_pos.end + 1 >= second_pos.start {
                    Some(Position {
                        start: first_pos.start,
                        end: second_pos.end,
                    })
                } else {
                    // Otherwise, just use the second position.
                    Some(pos2)
                }
            }
            _ => None,
        }
    }
}

/// `AstNode` represents a node in our BF AST.
#[derive(PartialEq, Eq, Debug, Clone)]
pub enum AstNode {
    /// The `+` and `-` instructions in BF.
    Increment {
        /// The amount to increment the current BF cell by.
        ///
        /// `amount` can have values other than 1 and -1 after
        /// simplification, e.g. `++` is simplified to a single
        /// Increment with an amount of 2.
        amount: BfValue,
        /// The offset of the affected BF cell relative to the current
        /// BF cell pointer.
        ///
        /// For example, `>+<` is an increment at offset 1.
        offset: isize,
        position: Option<Position>,
    },
    /// The `<` and `>` instructions in BF. `amount` may not be 1 or
    /// -1 after simplifying e.g. `>>`.
    PointerIncrement {
        amount: isize,
        position: Option<Position>,
    },
    /// The `,` instruction in BF.
    Read { position: Option<Position> },
    /// The `.` instruction in BF.
    Write { position: Option<Position> },
    /// A loop in BF, such as `[>]`.
    Loop {
        body: Vec<AstNode>,
        position: Option<Position>,
    },
    /// Set the current BF cell to a value.
    ///
    /// This is only emitted during simplification. For example, `[-]`
    /// is equivalent to setting the BF cell to zero.
    Set {
        amount: BfValue,
        /// The offset of the affected BF cell relative to the current
        /// BF cell pointer.
        ///
        /// For example, `>[-]<` is `Set { amount: 0, offset: 1}`.
        offset: isize,
        position: Option<Position>,
    },
    /// Assign multiple other BF cells to the value of this cell,
    /// multiplied by a constant. This also sets the current BF cell
    /// to zero.
    ///
    /// For example, `[>+++<-]` is `MultiplyMove { changes: { 1: 3 }}`.
    MultiplyMove {
        changes: HashMap<isize, BfValue>,
        position: Option<Position>,
    },
}

fn fmt_with_indent(instr: &AstNode, indent: i32, f: &mut fmt::Formatter) {
    for _ in 0..indent {
        let _ = write!(f, "  ");
    }

    match instr {
        &Loop {
            body: ref loop_body,
            position,
            ..
        } => {
            let _ = write!(f, "Loop position: {:?}", position);

            for loop_instr in loop_body {
                let _ = writeln!(f);
                fmt_with_indent(loop_instr, indent + 1, f);
            }
        }
        instr => {
            let _ = write!(f, "{:?}", instr);
        }
    }
}

impl fmt::Display for AstNode {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        fmt_with_indent(self, 0, f);
        Ok(())
    }
}

pub fn get_position(instr: &AstNode) -> Option<Position> {
    match *instr {
        Increment { position, .. } => position,
        PointerIncrement { position, .. } => position,
        Read { position } => position,
        Write { position } => position,
        Loop { position, .. } => position,
        Set { position, .. } => position,
        MultiplyMove { position, .. } => position,
    }
}

#[derive(Debug)]
pub struct ParseError {
    pub message: String,
    pub position: Position,
}

/// Given a string of BF source code, parse and return our BF IR
/// representation. If parsing fails, return a position and message
/// describing what went wrong.
pub fn parse(source: &str) -> Result<Vec<AstNode>, ParseError> {
    // AstNodes in the current loop (or toplevel).
    let mut instructions = vec![];
    // Contains the instructions of open parent loops (or toplevel),
    // and the starting indices of the loops.
    let mut stack = vec![];

    for (index, c) in source.chars().enumerate() {
        match c {
            '+' => instructions.push(Increment {
                amount: Wrapping(1),
                offset: 0,
                position: Some(Position {
                    start: index,
                    end: index,
                }),
            }),
            '-' => instructions.push(Increment {
                amount: Wrapping(-1),
                offset: 0,
                position: Some(Position {
                    start: index,
                    end: index,
                }),
            }),
            '>' => instructions.push(PointerIncrement {
                amount: 1,
                position: Some(Position {
                    start: index,
                    end: index,
                }),
            }),
            '<' => instructions.push(PointerIncrement {
                amount: -1,
                position: Some(Position {
                    start: index,
                    end: index,
                }),
            }),
            ',' => instructions.push(Read {
                position: Some(Position {
                    start: index,
                    end: index,
                }),
            }),
            '.' => instructions.push(Write {
                position: Some(Position {
                    start: index,
                    end: index,
                }),
            }),
            '[' => {
                stack.push((instructions, index));
                instructions = vec![];
            }
            ']' => {
                if let Some((mut parent_instr, open_index)) = stack.pop() {
                    parent_instr.push(Loop {
                        body: instructions,
                        position: Some(Position {
                            start: open_index,
                            end: index,
                        }),
                    });
                    instructions = parent_instr;
                } else {
                    return Err(ParseError {
                        message: "This ] has no matching [".to_owned(),
                        position: Position {
                            start: index,
                            end: index,
                        },
                    });
                }
            }
            _ => (),
        }
    }

    if !stack.is_empty() {
        let pos = stack.last().unwrap().1;
        return Err(ParseError {
            message: "This [ has no matching ]".to_owned(),
            position: Position {
                start: pos,
                end: pos,
            },
        });
    }

    Ok(instructions)
}

#[cfg(test)]
mod tests {
    use super::*;
    use pretty_assertions::assert_eq;

    #[test]
    fn parse_increment() {
        assert_eq!(
            parse("+").unwrap(),
            [Increment {
                amount: Wrapping(1),
                offset: 0,
                position: Some(Position { start: 0, end: 0 }),
            }]
        );
        assert_eq!(
            parse("++").unwrap(),
            [
                Increment {
                    amount: Wrapping(1),
                    offset: 0,
                    position: Some(Position { start: 0, end: 0 }),
                },
                Increment {
                    amount: Wrapping(1),
                    offset: 0,
                    position: Some(Position { start: 1, end: 1 }),
                }
            ]
        );
    }

    #[test]
    fn parse_decrement() {
        assert_eq!(
            parse("-").unwrap(),
            [Increment {
                amount: Wrapping(-1),
                offset: 0,
                position: Some(Position { start: 0, end: 0 }),
            }]
        );
    }

    #[test]
    fn parse_pointer_increment() {
        assert_eq!(
            parse(">").unwrap(),
            [PointerIncrement {
                amount: 1,
                position: Some(Position { start: 0, end: 0 }),
            }]
        );
    }

    #[test]
    fn parse_pointer_decrement() {
        assert_eq!(
            parse("<").unwrap(),
            [PointerIncrement {
                amount: -1,
                position: Some(Position { start: 0, end: 0 }),
            }]
        );
    }

    #[test]
    fn parse_read() {
        assert_eq!(
            parse(",").unwrap(),
            [Read {
                position: Some(Position { start: 0, end: 0 })
            }]
        );
    }

    #[test]
    fn parse_write() {
        assert_eq!(
            parse(".").unwrap(),
            [Write {
                position: Some(Position { start: 0, end: 0 })
            }]
        );
    }

    #[test]
    fn parse_empty_loop() {
        let expected = [Loop {
            body: vec![],
            position: Some(Position { start: 0, end: 1 }),
        }];
        assert_eq!(parse("[]").unwrap(), expected);
    }

    #[test]
    fn parse_simple_loop() {
        let loop_body = vec![Increment {
            amount: Wrapping(1),
            offset: 0,
            position: Some(Position { start: 1, end: 1 }),
        }];
        let expected = [Loop {
            body: loop_body,
            position: Some(Position { start: 0, end: 2 }),
        }];
        assert_eq!(parse("[+]").unwrap(), expected);
    }

    #[test]
    fn parse_complex_loop() {
        let loop_body = vec![
            Read {
                position: Some(Position { start: 2, end: 2 }),
            },
            Increment {
                amount: Wrapping(1),
                offset: 0,
                position: Some(Position { start: 3, end: 3 }),
            },
        ];
        let expected = [
            Write {
                position: Some(Position { start: 0, end: 0 }),
            },
            Loop {
                body: loop_body,
                position: Some(Position { start: 1, end: 4 }),
            },
            Increment {
                amount: Wrapping(-1),
                offset: 0,
                position: Some(Position { start: 5, end: 5 }),
            },
        ];
        assert_eq!(parse(".[,+]-").unwrap(), expected);
    }

    #[test]
    fn parse_unbalanced_loop() {
        assert!(parse("[").is_err());
        assert!(parse("]").is_err());
        assert!(parse("][").is_err());
        assert!(parse("[][").is_err());
    }

    #[test]
    fn parse_comment() {
        assert_eq!(parse("foo! ").unwrap(), []);
    }

    #[test]
    fn test_combine_pos() {
        let pos1 = Some(Position { start: 1, end: 2 });
        let pos2 = Some(Position { start: 3, end: 4 });

        assert_eq!(pos1.combine(pos2), Some(Position { start: 1, end: 4 }));
    }

    #[test]
    fn test_combine_order() {
        let pos1 = Some(Position { start: 3, end: 4 });
        let pos2 = Some(Position { start: 1, end: 2 });

        assert_eq!(pos1.combine(pos2), Some(Position { start: 1, end: 4 }));
    }

    #[test]
    fn test_combine_pos_not_consecutive() {
        let pos1 = Some(Position { start: 1, end: 2 });
        let pos2 = Some(Position { start: 4, end: 5 });

        assert_eq!(pos1.combine(pos2), Some(Position { start: 4, end: 5 }));
    }

    #[test]
    fn test_combine_pos_overlap() {
        let pos1 = Some(Position { start: 1, end: 1 });
        let pos2 = Some(Position { start: 1, end: 3 });

        assert_eq!(pos1.combine(pos2), Some(Position { start: 1, end: 3 }));
    }
}