-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLibrary.fs
541 lines (449 loc) · 13.4 KB
/
Library.fs
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
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
module Optimize.FLIR
open System
open Common.Span
open Common.Target
open Semantic
type Integer =
| I1
| I8
| I32
| I64
type Float =
| F32
| F64
type Function = { Param: Type[]; Ret: Type }
and Type =
| TInt of Integer
| TFloat of Float
| TFn of Function
| TRef
| TSame of Type * uint64
| TMany of Type[]
static member Habitable (sema: Semantic.SemanticInfo) (ty: Semantic.Type) =
let field (ty: seq<Semantic.Type>) =
ty |> Seq.map (Type.Habitable sema) |> Seq.fold (*) 1
match ty with
| Semantic.TInt _
| Semantic.TFloat _
| Semantic.TChar
| Semantic.TString -> 10000
| Semantic.TBool -> 2
| Semantic.TStruct a ->
let stru = sema.Struct[a.Name]
let inst (t: Semantic.Type) = t.Instantiate stru.Generic a.Generic
stru.Field.Values |> Seq.map inst |> field
| Semantic.TEnum a ->
let enum = sema.Enum[a.Name]
let variant (ty: Semantic.Type[]) =
let mapTy (ty: Semantic.Type) = ty.Instantiate enum.Generic a.Generic
ty |> Array.map mapTy |> field
enum.Variant.Values |> Seq.map variant |> Seq.sum
| Semantic.TTuple t -> field t
| Semantic.TTrait _
| Semantic.TFn _ -> 10000
| Semantic.TRef t
| Semantic.TArray(t, _)
| Semantic.TSlice t -> Type.Habitable sema t
| Semantic.TNever -> 0
| Semantic.TVar _
| Semantic.TGen _ -> failwith "Type Variable should be substituted in previous pass"
member internal this.SizeAndAlign(layout: Layout) =
match this with
| TInt I1 -> 1, layout.I1Align
| TInt I8 -> 1, layout.I8Align
| TInt I32 -> 4, layout.I32Align
| TInt I64 -> 8, layout.I64Align
| TFloat F32 -> 4, layout.F32Align
| TFloat F64 -> 8, layout.F64Align
| TFn _
| TRef -> layout.PtrSize, layout.PtrAlign
| TSame(s, n) ->
let size, align = s.SizeAndAlign layout
size * int n, align
| TMany ty ->
let sum (size, align) (ty: Type) =
let s, a = ty.SizeAndAlign layout
let padding = if size % a = 0 then 0 else s - size % s
let align = if a > align then a else align
size + padding + s, align
Array.fold sum (0, 0) ty
member this.Size(layout: Layout) =
let size, align = this.SizeAndAlign layout
if size % align = 0 then
size
else
(size / align + 1) * align
member this.Align(layout: Layout) = snd (this.SizeAndAlign layout)
member this.OptLayout(layout: Layout) =
match this with
| TMany t ->
let t = t |> Array.sortByDescending _.Size(layout)
TMany t
| t -> t
member this.ToString =
match this with
| TInt I1 -> "i1"
| TInt I8 -> "i8"
| TInt I32 -> "i32"
| TInt I64 -> "i64"
| TFloat F32 -> "f32"
| TFloat F64 -> "f64"
| TFn(_) -> "fn"
| TRef -> "ptr"
| TSame(t, n) -> $"[{t.ToString}; {n}]"
| TMany t ->
let t = t |> Array.map _.ToString |> String.concat ", "
$"({t})"
type MonoMode =
| MSize of int
| MType of Type
type Location =
| Static
| Unambiguous
| Automatic
| Irregular
type BinOp =
| Add
| Sub
| Mul
| Div
| Rem
| Xor
| And
| Or
| Shl
/// signed or not
| Shr of bool
| Eq
| NotEq
/// signed or not
| Lt of bool
/// signed or not
| LtEq of bool
/// signed or not
| GtEq of bool
/// signed or not
| Gt of bool
member this.ToString =
match this with
| Add -> "+"
| Sub -> "-"
| Mul -> "*"
| Div -> "/"
| Rem -> "%"
| Xor -> "^"
| And -> "&"
| Or -> "|"
| Shl -> "<<"
| Shr true -> ">>"
| Shr false -> ">>>"
| Eq -> "=="
| NotEq -> "!="
| Lt true -> "<"
| Lt false -> "u<"
| LtEq true -> "<="
| LtEq false -> "u<="
| GtEq true -> ">="
| GtEq false -> "u>="
| Gt true -> ">"
| Gt false -> "u>"
type UnaryOp =
| Neg
| Not
| Ext of bool
member this.ToString =
match this with
| Neg -> "-"
| Not -> "!"
| Ext true -> "sext"
| Ext false -> "zext"
type UseData =
| InTx
| InPhi of int
| ForTarget of int
type Use = { BlockId: int; Data: UseData }
type Var =
{ Name: string
Type: Type
Def: int
Use: Use[] }
member this.WithUse data =
{ this with
Use = Array.append this.Use [| data |] }
member this.WithoutUse data =
{ this with
Use = Array.filter ((<>) data) this.Use }
type Value =
| Const of uint64
| Binding of int
type Assign =
{ Target: int
Value: Value
Span: Span }
type Binary =
{ Left: Value
Right: Value
Op: BinOp
Target: int
Span: Span }
type Unary =
{ Target: int
Op: UnaryOp
Value: Value
Span: Span }
type Callee =
| Fixed
| CBinding of int
type Call =
{ Target: int
Callee: Callee
Arg: Value[]
Span: Span }
type Load =
{ Target: int
Base: Value
Offset: Value }
/// Instrument
type Instr =
| Assign of Assign
| Binary of Binary
| Unary of Unary
| Call of Call
| Load of Load
| Store
| Alloc
member this.Target =
match this with
| Binary b -> b.Target
| Assign a -> a.Target
| Unary n -> n.Target
| Call c -> c.Target
| Load l -> l.Target
| Store -> failwith "Not Implemented"
| Alloc -> failwith "Not Implemented"
member this.Value =
seq {
match this with
| Binary b ->
yield b.Left
yield b.Right
| Assign a -> yield a.Value
| Unary u -> yield u.Value
| Call c -> yield! c.Arg
| Load l ->
yield l.Base
yield l.Offset
| Store -> failwith "Not Implemented"
| Alloc -> failwith "Not Implemented"
}
type Jump = { Target: int; Span: Span }
type Branch =
{ Value: Value
Zero: int
One: int
Span: Span }
type Indirect =
{ Value: Value
Dest: int[]
Span: Span }
type Ret = { Value: Option<Value>; Span: Span }
type Transfer =
| Jump of Jump
| Branch of Branch
| Indirect of Indirect
| Return of Ret
| Unreachable of Span
member this.Target() =
seq {
match this with
| Jump j -> yield j.Target
| Branch b ->
yield b.One
yield b.Zero
| Indirect s ->
for dest in s.Dest do
yield dest
| Return _
| Unreachable _ -> ()
}
/// Basic block
type Block =
{ Phi: Map<int, Value[]>
Instr: Instr[]
Trans: Transfer }
member this.Analyze def use_ =
for instr in this.Instr do
match instr with
| Assign a ->
use_ a.Value
def a.Target
| Unary u ->
use_ u.Value
def u.Target
| Binary b ->
use_ b.Left
use_ b.Right
def b.Target
| Call c ->
for arg in c.Arg do
use_ arg
def c.Target
| Load l ->
use_ l.Base
use_ l.Offset
def l.Target
| Store -> failwith "Not Implemented"
| Alloc -> failwith "Not Implemented"
match this.Trans with
| Branch b -> use_ b.Value
| Return r ->
match r.Value with
| None -> ()
| Some v -> use_ v
| Indirect s -> use_ s.Value
| Jump _
| Unreachable _ -> ()
member this.Rewrite def use_ =
let rewriteInstr instr =
match instr with
| Assign a ->
Assign
{ a with
Value = use_ a.Value
Target = def a.Target }
| Unary u ->
Unary
{ u with
Value = use_ u.Value
Target = def u.Target }
| Binary b ->
Binary
{ b with
Left = use_ b.Left
Right = use_ b.Right
Target = def b.Target }
| Call c ->
Call
{ c with
Arg = Array.map use_ c.Arg
Target = def c.Target }
| Load l ->
Load
{ l with
Base = use_ l.Base
Offset = use_ l.Offset
Target = def l.Target }
| Store -> failwith "Not Implemented"
| Alloc -> failwith "Not Implemented"
let instr = Array.map rewriteInstr this.Instr
let trans =
match this.Trans with
| Branch b -> Branch { b with Value = use_ b.Value }
| Return r ->
let value =
match r.Value with
| None -> None
| Some v -> Some(use_ v)
Return { r with Value = value }
| Indirect s -> Indirect { s with Value = use_ s.Value }
| Jump _
| Unreachable _ -> this.Trans
{ this with
Instr = instr
Trans = trans }
type GraphNode = { Pred: int[]; Succ: int[] }
type Func =
{ Block: Block[]
CFG: GraphNode[]
Param: int[]
Var: Var[]
Span: Span
Ret: Option<Type> }
member this.Print(tw: IO.TextWriter) =
let labelToString id = "'" + string id
let varToString id =
let var = this.Var[id]
let name = if var.Name.Length > 0 then var.Name else "_"
name + string id
let paramToString id =
let name = varToString id
let ty = this.Var[id].Type.ToString
$"{name}: {ty}"
let valueToString v =
match v with
| Const c -> string c
| Binding i -> varToString i
let param = this.Param |> Array.map paramToString |> String.concat ", "
let ret =
match this.Ret with
| Some ret -> " -> " + ret.ToString
| None -> ""
let header = $"fn ({param}){ret} {{"
tw.WriteLine(header)
for idx, block in Array.indexed this.Block do
let id = labelToString idx
tw.WriteLine $" {id}: {{"
for KeyValue(var, choose) in block.Phi do
tw.Write(String.replicate 8 " ")
tw.Write(varToString var)
tw.Write " = Φ("
let choose = choose |> Array.map valueToString
let choose = String.Join(", ", choose)
tw.Write choose
tw.WriteLine ")"
for stm in block.Instr do
tw.Write(String.replicate 8 " ")
tw.Write(varToString stm.Target)
tw.Write " = "
let stm =
match stm with
| Binary bin ->
let left = valueToString bin.Left
let op = bin.Op.ToString
let right = valueToString bin.Right
$"{left} {op} {right}"
| Assign a ->
let v = valueToString a.Value
v
| Unary n ->
let v = valueToString n.Value
$"! {v}"
| Call c -> failwith "Not Implemented"
| Load l -> failwith "Not Implemented"
| Store -> failwith "Not Implemented"
| Alloc -> failwith "Not Implemented"
tw.WriteLine stm
let trans =
String.replicate 8 " "
+ match block.Trans with
| Jump i ->
let l = labelToString i.Target
$"jmp {l}"
| Branch b ->
let v = valueToString b.Value
let t = labelToString b.One
let f = labelToString b.Zero
$"br {v} ? {t} : {f}"
| Return r ->
"ret"
+ match r.Value with
| Some i -> $" {valueToString i}"
| None -> ""
| Indirect s -> failwith "Not Implemented"
| Unreachable _ -> "Unreachable"
tw.WriteLine trans |> ignore
tw.WriteLine " }" |> ignore
tw.WriteLine "}"
type Module =
{ Func: Func[]
Static: int[] }
member this.Print(tw: IO.TextWriter) =
for func in this.Func do
func.Print tw
let transLocal trans (m: Module) =
let trans f =
{ f with
Block = f.Block |> Array.indexed |> Array.map (trans f) }
{ m with Func = Array.map trans m.Func }
let transRegional trans (m: Module) =
{ m with Func = Array.map trans m.Func }