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
//! Hand-written tokeniser. Produces `Token`s carrying source spans.
use crate::error::{CompileError, Span};
/// A lexical token kind.
#[derive(Debug, Clone, PartialEq)]
pub enum Tok {
/// Numeric literal that contains a `.` or exponent — a float.
Float(f64),
/// Numeric literal with no `.` — an integer.
Int(i64),
/// Identifier / keyword (`sin`, `min`, `process`, user names).
Ident(String),
/// String literal, e.g. `"cutoff"`.
Str(String),
/// `_`
Wire,
/// `!`
Cut,
/// `:`
Colon,
/// `<:`
Split,
/// `:>`
Merge,
/// `~`
Tilde,
/// `@`
At,
/// `,`
Comma,
/// `+`
Plus,
/// `-`
Minus,
/// `*`
Star,
/// `/`
Slash,
/// `%`
Percent,
/// `(`
LParen,
/// `)`
RParen,
/// `=`
Eq,
/// `;`
Semi,
/// `main` keyword — entry point.
KwMain,
/// `where` keyword — optional definition block.
KwWhere,
/// `let` keyword — expression-level mutually-recursive bindings.
KwLet,
/// `in` keyword — separator in `let defs in expr`.
KwIn,
/// `{`
LBrace,
/// `}`
RBrace,
/// `?`
Question,
/// End of input.
Eof,
/// Imaginary literal, e.g. `3i`, `2.5i`.
Imag(f64),
}
/// A token plus its source span.
#[derive(Debug, Clone, PartialEq)]
pub struct Token {
/// The token kind.
pub tok: Tok,
/// Where it came from.
pub span: Span,
}
/// Tokenise `src` into a vector terminated by a single [`Tok::Eof`].
///
/// Whitespace is skipped. `//` starts a line comment.
pub fn tokenize(src: &str) -> Result<Vec<Token>, CompileError> {
let bytes = src.as_bytes();
let mut i = 0usize;
let mut out = Vec::new();
let is_ident_start = |c: u8| c.is_ascii_alphabetic() || c == b'_';
let is_ident_cont = |c: u8| c.is_ascii_alphanumeric() || c == b'_';
while i < bytes.len() {
let c = bytes[i];
if c.is_ascii_whitespace() {
i += 1;
continue;
}
if c == b'/' && i + 1 < bytes.len() && bytes[i + 1] == b'/' {
while i < bytes.len() && bytes[i] != b'\n' {
i += 1;
}
continue;
}
let start = i;
if c == b'<' && i + 1 < bytes.len() && bytes[i + 1] == b':' {
i += 2;
out.push(Token {
tok: Tok::Split,
span: Span::new(start, i),
});
continue;
}
if c == b':' && i + 1 < bytes.len() && bytes[i + 1] == b'>' {
i += 2;
out.push(Token {
tok: Tok::Merge,
span: Span::new(start, i),
});
continue;
}
if c.is_ascii_digit() {
let mut is_float = false;
while i < bytes.len()
&& (bytes[i].is_ascii_digit()
|| bytes[i] == b'.'
|| bytes[i] == b'e'
|| bytes[i] == b'E')
{
if bytes[i] == b'.' || bytes[i] == b'e' || bytes[i] == b'E' {
is_float = true;
}
i += 1;
}
let text = &src[start..i];
let span = Span::new(start, i);
if i < bytes.len() && bytes[i] == b'i' {
i += 1;
let span = Span::new(start, i);
let v: f64 = text.parse().map_err(|_| CompileError::Lex {
msg: format!("invalid imaginary literal `{text}i`"),
span,
})?;
out.push(Token {
tok: Tok::Imag(v),
span,
});
} else if is_float {
let v: f64 = text.parse().map_err(|_| CompileError::Lex {
msg: format!("invalid float literal `{text}`"),
span,
})?;
out.push(Token {
tok: Tok::Float(v),
span,
});
} else {
let v: i64 = text.parse().map_err(|_| CompileError::Lex {
msg: format!("invalid int literal `{text}`"),
span,
})?;
out.push(Token {
tok: Tok::Int(v),
span,
});
}
continue;
}
if is_ident_start(c) {
while i < bytes.len() && is_ident_cont(bytes[i]) {
i += 1;
}
let text = &src[start..i];
let span = Span::new(start, i);
// peek past whitespace to see if `(` follows — if so,
// `param(`, `keep(`, `inline(` are function calls, not keywords
let mut j = i;
while j < bytes.len() && bytes[j].is_ascii_whitespace() {
j += 1;
}
let followed_by_paren = j < bytes.len() && bytes[j] == b'(';
let tok = match text {
"_" => Tok::Wire,
"main" if !followed_by_paren => Tok::KwMain,
"where" if !followed_by_paren => Tok::KwWhere,
"let" if !followed_by_paren => Tok::KwLet,
"in" if !followed_by_paren => Tok::KwIn,
_ => Tok::Ident(text.to_string()),
};
out.push(Token { tok, span });
continue;
}
if c == b'"' {
i += 1;
while i < bytes.len() && bytes[i] != b'"' {
i += 1;
}
if i >= bytes.len() {
return Err(CompileError::Lex {
msg: "unterminated string literal".into(),
span: Span::new(start, bytes.len()),
});
}
i += 1;
let text = src[start + 1..i - 1].to_string();
out.push(Token {
tok: Tok::Str(text),
span: Span::new(start, i),
});
continue;
}
let single = match c {
b':' => Tok::Colon,
b'~' => Tok::Tilde,
b'@' => Tok::At,
b',' => Tok::Comma,
b'+' => Tok::Plus,
b'-' => Tok::Minus,
b'*' => Tok::Star,
b'/' => Tok::Slash,
b'%' => Tok::Percent,
b'!' => Tok::Cut,
b'?' => Tok::Question,
b'(' => Tok::LParen,
b')' => Tok::RParen,
b'{' => Tok::LBrace,
b'}' => Tok::RBrace,
b'=' => Tok::Eq,
b';' => Tok::Semi,
other => {
return Err(CompileError::Lex {
msg: format!("unexpected character `{}`", other as char),
span: Span::new(start, start + 1),
})
}
};
i += 1;
out.push(Token {
tok: single,
span: Span::new(start, i),
});
}
out.push(Token {
tok: Tok::Eof,
span: Span::new(src.len(), src.len()),
});
Ok(out)
}
#[cfg(test)]
mod tests {
use super::*;
fn kinds(src: &str) -> Vec<Tok> {
tokenize(src).unwrap().into_iter().map(|t| t.tok).collect()
}
#[test]
fn lexes_combinators_and_ops() {
assert_eq!(
kinds("_ : + <: :> ~ @ , * / % ! ? ( ) { } = ;"),
vec![
Tok::Wire,
Tok::Colon,
Tok::Plus,
Tok::Split,
Tok::Merge,
Tok::Tilde,
Tok::At,
Tok::Comma,
Tok::Star,
Tok::Slash,
Tok::Percent,
Tok::Cut,
Tok::Question,
Tok::LParen,
Tok::RParen,
Tok::LBrace,
Tok::RBrace,
Tok::Eq,
Tok::Semi,
Tok::Eof,
]
);
}
#[test]
fn distinguishes_int_and_float() {
assert_eq!(
kinds("3 3.5 10"),
vec![Tok::Int(3), Tok::Float(3.5), Tok::Int(10), Tok::Eof]
);
}
#[test]
fn lexes_idents_and_skips_comments() {
assert_eq!(
kinds("process // a comment\n sin"),
vec![
Tok::Ident("process".into()),
Tok::Ident("sin".into()),
Tok::Eof
]
);
}
#[test]
fn split_and_merge_are_multichar() {
assert_eq!(kinds(":>"), vec![Tok::Merge, Tok::Eof]);
assert_eq!(kinds("<:"), vec![Tok::Split, Tok::Eof]);
}
#[test]
fn rejects_unknown_char() {
assert!(tokenize("$").is_err());
}
#[test]
fn lexes_string_literal() {
assert_eq!(
kinds(r#""cutoff""#),
vec![Tok::Str("cutoff".into()), Tok::Eof]
);
}
#[test]
fn rejects_unterminated_string() {
assert!(tokenize(r#""abc"#).is_err());
}
#[test]
fn lexes_main_keyword() {
assert_eq!(
kinds("main foo bar"),
vec![
Tok::KwMain,
Tok::Ident("foo".into()),
Tok::Ident("bar".into()),
Tok::Eof,
]
);
}
#[test]
fn main_is_not_keyword_when_followed_by_paren() {
assert_eq!(
kinds(r#"main("freq", 440)"#),
vec![
Tok::Ident("main".into()),
Tok::LParen,
Tok::Str("freq".into()),
Tok::Comma,
Tok::Int(440),
Tok::RParen,
Tok::Eof,
]
);
}
#[test]
fn lexes_let_and_in_keywords() {
assert_eq!(
kinds("let x = 1 in x"),
vec![
Tok::KwLet,
Tok::Ident("x".into()),
Tok::Eq,
Tok::Int(1),
Tok::KwIn,
Tok::Ident("x".into()),
Tok::Eof,
]
);
}
#[test]
fn let_is_not_keyword_when_followed_by_paren() {
assert_eq!(
kinds("let(x, y)"),
vec![
Tok::Ident("let".into()),
Tok::LParen,
Tok::Ident("x".into()),
Tok::Comma,
Tok::Ident("y".into()),
Tok::RParen,
Tok::Eof,
]
);
}
}