koopa 0.0.10

Library for generating/parsing/optimizing Koopa IR.
Documentation
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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
//! Definitions of Koopa IR ASTs.
//!
//! ASTs can represent the tree structures of the text form Koopa IR,
//! and they will be built by the Koopa IR parser
//! ([`Parser`](crate::front::parser::Parser)) during the parsing process.

use crate::front::span::Span;
use crate::ir::BinaryOp;
use std::cmp::PartialEq;

/// An abstract syntax tree (AST) of Koopa IR.
#[derive(Debug)]
pub struct Ast {
  pub span: Span,
  pub kind: AstKind,
}

/// A boxed Koopa IR AST.
pub type AstBox = Box<Ast>;

impl Ast {
  /// Creates a new boxed AST.
  pub(in crate::front) fn new_boxed(span: Span, kind: AstKind) -> AstBox {
    Box::new(Self { span, kind })
  }
}

impl PartialEq for Ast {
  fn eq(&self, other: &Self) -> bool {
    // ignore field `span`
    self.kind == other.kind
  }
}

/// Kind of AST.
#[derive(Debug, PartialEq)]
pub enum AstKind {
  /// 32-bit integer type.
  IntType(IntType),
  /// Array type.
  ArrayType(ArrayType),
  /// Pointer type.
  PointerType(PointerType),
  /// Function type.
  FunType(FunType),
  /// Symbol refernce.
  SymbolRef(SymbolRef),
  /// Integer literal.
  IntVal(IntVal),
  /// Undefined value.
  UndefVal(UndefVal),
  /// Aggregate value.
  Aggregate(Aggregate),
  /// Zero initializer.
  ZeroInit(ZeroInit),
  /// Symbol definition.
  SymbolDef(SymbolDef),
  /// Global symbol definition.
  GlobalDef(GlobalDef),
  /// Memory declaration.
  MemDecl(MemDecl),
  /// Global memory declaration.
  GlobalDecl(GlobalDecl),
  /// Load.
  Load(Load),
  /// Store.
  Store(Store),
  /// Pointer calculation.
  GetPointer(GetPointer),
  /// Element pointer calculation.
  GetElementPointer(GetElementPointer),
  /// Binary expression.
  BinaryExpr(BinaryExpr),
  /// Branch.
  Branch(Branch),
  /// Jump.
  Jump(Jump),
  /// Function call.
  FunCall(FunCall),
  /// Return.
  Return(Return),
  /// Function definition.
  FunDef(FunDef),
  /// Basic block.
  Block(Block),
  /// Function declaration.
  FunDecl(FunDecl),
  /// End of file.
  End(End),
  /// Error.
  Error(Error),
}

/// 32-bit integer type.
#[derive(Debug, PartialEq, Eq)]
pub struct IntType;

impl IntType {
  /// Creates a new boxed `IntType` AST.
  pub fn new_boxed(span: Span) -> AstBox {
    Ast::new_boxed(span, AstKind::IntType(Self))
  }
}

/// Array type.
#[derive(Debug, PartialEq)]
pub struct ArrayType {
  pub base: AstBox,
  pub len: usize,
}

impl ArrayType {
  /// Creates a new boxed `ArrayType` AST.
  pub fn new_boxed(span: Span, base: AstBox, len: usize) -> AstBox {
    Ast::new_boxed(span, AstKind::ArrayType(Self { base, len }))
  }
}

/// Pointer type.
#[derive(Debug, PartialEq)]
pub struct PointerType {
  pub base: AstBox,
}

impl PointerType {
  /// Creates a new boxed `PointerType` AST.
  pub fn new_boxed(span: Span, base: AstBox) -> AstBox {
    Ast::new_boxed(span, AstKind::PointerType(Self { base }))
  }
}

/// Function type.
#[derive(Debug, PartialEq)]
pub struct FunType {
  pub params: Vec<AstBox>,
  pub ret: Option<AstBox>,
}

impl FunType {
  /// Creates a new boxed `FunType` AST.
  pub fn new_boxed(span: Span, params: Vec<AstBox>, ret: Option<AstBox>) -> AstBox {
    Ast::new_boxed(span, AstKind::FunType(Self { params, ret }))
  }
}

/// Symbol reference.
#[derive(Debug, PartialEq, Eq)]
pub struct SymbolRef {
  pub symbol: String,
}

impl SymbolRef {
  /// Creates a new boxed `SymbolRef` AST.
  pub fn new_boxed(span: Span, symbol: String) -> AstBox {
    Ast::new_boxed(span, AstKind::SymbolRef(Self { symbol }))
  }
}

/// Integer literal.
#[derive(Debug, PartialEq, Eq)]
pub struct IntVal {
  pub value: i32,
}

impl IntVal {
  /// Creates a new boxed `IntVal` AST.
  pub fn new_boxed(span: Span, value: i32) -> AstBox {
    Ast::new_boxed(span, AstKind::IntVal(Self { value }))
  }
}

/// Undefined value.
#[derive(Debug, PartialEq, Eq)]
pub struct UndefVal;

impl UndefVal {
  /// Creates a new boxed `UndefVal` AST.
  pub fn new_boxed(span: Span) -> AstBox {
    Ast::new_boxed(span, AstKind::UndefVal(Self))
  }
}

/// Aggregate value.
#[derive(Debug, PartialEq)]
pub struct Aggregate {
  pub elems: Vec<AstBox>,
}

impl Aggregate {
  /// Creates a new boxed `Aggregate` AST.
  pub fn new_boxed(span: Span, elems: Vec<AstBox>) -> AstBox {
    Ast::new_boxed(span, AstKind::Aggregate(Self { elems }))
  }
}

/// Zero initializer.
#[derive(Debug, PartialEq, Eq)]
pub struct ZeroInit;

impl ZeroInit {
  /// Creates a new boxed `ZeroInit` AST.
  pub fn new_boxed(span: Span) -> AstBox {
    Ast::new_boxed(span, AstKind::ZeroInit(Self))
  }
}

/// Symbol definition.
#[derive(Debug, PartialEq)]
pub struct SymbolDef {
  pub name: String,
  pub value: AstBox,
}

impl SymbolDef {
  /// Creates a new boxed `SymbolDef` AST.
  pub fn new_boxed(span: Span, name: String, value: AstBox) -> AstBox {
    Ast::new_boxed(span, AstKind::SymbolDef(Self { name, value }))
  }
}

/// Global symbol definition.
#[derive(Debug, PartialEq)]
pub struct GlobalDef {
  pub name: String,
  pub value: AstBox,
}

impl GlobalDef {
  /// Creates a new boxed `GlobalDef` AST.
  pub fn new_boxed(span: Span, name: String, value: AstBox) -> AstBox {
    Ast::new_boxed(span, AstKind::GlobalDef(Self { name, value }))
  }
}

/// Memory declaration.
#[derive(Debug, PartialEq)]
pub struct MemDecl {
  pub ty: AstBox,
}

impl MemDecl {
  /// Creates a new boxed `MemDecl` AST.
  pub fn new_boxed(span: Span, ty: AstBox) -> AstBox {
    Ast::new_boxed(span, AstKind::MemDecl(Self { ty }))
  }
}

/// Global memory declaration.
#[derive(Debug, PartialEq)]
pub struct GlobalDecl {
  pub ty: AstBox,
  pub init: AstBox,
}

impl GlobalDecl {
  /// Creates a new boxed `GlobalDecl` AST.
  pub fn new_boxed(span: Span, ty: AstBox, init: AstBox) -> AstBox {
    Ast::new_boxed(span, AstKind::GlobalDecl(Self { ty, init }))
  }
}

/// Load.
#[derive(Debug, PartialEq, Eq)]
pub struct Load {
  pub symbol: String,
}

impl Load {
  /// Creates a new boxed `Load` AST.
  pub fn new_boxed(span: Span, symbol: String) -> AstBox {
    Ast::new_boxed(span, AstKind::Load(Self { symbol }))
  }
}

/// Store.
#[derive(Debug, PartialEq)]
pub struct Store {
  pub value: AstBox,
  pub symbol: String,
}

impl Store {
  /// Creates a new boxed `Store` AST.
  pub fn new_boxed(span: Span, value: AstBox, symbol: String) -> AstBox {
    Ast::new_boxed(span, AstKind::Store(Self { value, symbol }))
  }
}

/// Pointer calculation.
#[derive(Debug, PartialEq)]
pub struct GetPointer {
  pub symbol: String,
  pub value: AstBox,
}

impl GetPointer {
  /// Creates a new boxed `GetPointer` AST.
  pub fn new_boxed(span: Span, symbol: String, value: AstBox) -> AstBox {
    Ast::new_boxed(span, AstKind::GetPointer(Self { symbol, value }))
  }
}

/// Element pointer calculation.
#[derive(Debug, PartialEq)]
pub struct GetElementPointer {
  pub symbol: String,
  pub value: AstBox,
}

impl GetElementPointer {
  /// Creates a new boxed `GetElementPointer` AST.
  pub fn new_boxed(span: Span, symbol: String, value: AstBox) -> AstBox {
    Ast::new_boxed(span, AstKind::GetElementPointer(Self { symbol, value }))
  }
}

/// Binary expression.
#[derive(Debug, PartialEq)]
pub struct BinaryExpr {
  pub op: BinaryOp,
  pub lhs: AstBox,
  pub rhs: AstBox,
}

impl BinaryExpr {
  /// Creates a new boxed `BinaryExpr` AST.
  pub fn new_boxed(span: Span, op: BinaryOp, lhs: AstBox, rhs: AstBox) -> AstBox {
    Ast::new_boxed(span, AstKind::BinaryExpr(Self { op, lhs, rhs }))
  }
}

/// Branch.
#[derive(Debug, PartialEq)]
pub struct Branch {
  pub cond: AstBox,
  pub tbb: String,
  pub targs: Vec<AstBox>,
  pub fbb: String,
  pub fargs: Vec<AstBox>,
}

impl Branch {
  /// Creates a new boxed `Branch` AST.
  pub fn new_boxed(
    span: Span,
    cond: AstBox,
    tbb: String,
    targs: Vec<AstBox>,
    fbb: String,
    fargs: Vec<AstBox>,
  ) -> AstBox {
    Ast::new_boxed(
      span,
      AstKind::Branch(Self {
        cond,
        tbb,
        targs,
        fbb,
        fargs,
      }),
    )
  }
}

/// Jump.
#[derive(Debug, PartialEq)]
pub struct Jump {
  pub target: String,
  pub args: Vec<AstBox>,
}

impl Jump {
  /// Creates a new boxed `Jump` AST.
  pub fn new_boxed(span: Span, target: String, args: Vec<AstBox>) -> AstBox {
    Ast::new_boxed(span, AstKind::Jump(Self { target, args }))
  }
}

/// Function call.
#[derive(Debug, PartialEq)]
pub struct FunCall {
  pub fun: String,
  pub args: Vec<AstBox>,
}

impl FunCall {
  /// Creates a new boxed `FunCall` AST.
  pub fn new_boxed(span: Span, fun: String, args: Vec<AstBox>) -> AstBox {
    Ast::new_boxed(span, AstKind::FunCall(Self { fun, args }))
  }
}

/// Return.
#[derive(Debug, PartialEq)]
pub struct Return {
  pub value: Option<AstBox>,
}

impl Return {
  /// Creates a new boxed `Return` AST.
  pub fn new_boxed(span: Span, value: Option<AstBox>) -> AstBox {
    Ast::new_boxed(span, AstKind::Return(Self { value }))
  }
}

/// Function definition.
#[derive(Debug, PartialEq)]
pub struct FunDef {
  pub name: String,
  pub params: Vec<(String, AstBox)>,
  pub ret: Option<AstBox>,
  pub bbs: Vec<AstBox>,
}

impl FunDef {
  /// Creates a new boxed `FunDef` AST.
  pub fn new_boxed(
    span: Span,
    name: String,
    params: Vec<(String, AstBox)>,
    ret: Option<AstBox>,
    bbs: Vec<AstBox>,
  ) -> AstBox {
    Ast::new_boxed(
      span,
      AstKind::FunDef(Self {
        name,
        params,
        ret,
        bbs,
      }),
    )
  }
}

/// Basic block.
#[derive(Debug, PartialEq)]
pub struct Block {
  pub name: String,
  pub params: Vec<(String, AstBox)>,
  pub stmts: Vec<AstBox>,
}

impl Block {
  /// Creates a new boxed `Block` AST.
  pub fn new_boxed(
    span: Span,
    name: String,
    params: Vec<(String, AstBox)>,
    stmts: Vec<AstBox>,
  ) -> AstBox {
    Ast::new_boxed(
      span,
      AstKind::Block(Self {
        name,
        params,
        stmts,
      }),
    )
  }
}

/// Function declaration.
#[derive(Debug, PartialEq)]
pub struct FunDecl {
  pub name: String,
  pub params: Vec<AstBox>,
  pub ret: Option<AstBox>,
}

impl FunDecl {
  /// Creates a new boxed `FunDecl` AST.
  pub fn new_boxed(span: Span, name: String, params: Vec<AstBox>, ret: Option<AstBox>) -> AstBox {
    Ast::new_boxed(span, AstKind::FunDecl(Self { name, params, ret }))
  }
}

/// End of file.
#[derive(Debug, PartialEq, Eq)]
pub struct End;

impl End {
  /// Creates a new boxed `End` AST.
  pub fn new_boxed(span: Span) -> AstBox {
    Ast::new_boxed(span, AstKind::End(Self))
  }
}

/// Error.
#[derive(Debug, PartialEq, Eq)]
pub struct Error;

impl Error {
  /// Creates a new boxed `Error` AST.
  pub fn new_boxed(span: Span) -> AstBox {
    Ast::new_boxed(span, AstKind::Error(Self))
  }
}