summaryrefslogtreecommitdiff
path: root/src/wasm.h
blob: 6fc4ca5aadd45514cb64d9a9310336a4d309ae73 (plain)
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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346

//
// wasm.h: WebAssembly representation and processing library, in one
//         header file.
//
// This represents WebAssembly in an AST format, with a focus on making
// it easy to not just inspect but also to process. For example, some
// things that this enables are:
//
//  * Pretty-printing: Implemented in this file (printing can help
//                     understand the data structures here).
//  * Interpreting: See wasm-interpreter.h.
//  * Optimizing: See asm2wasm.h, which performs some optimizations
//                after code generation.
//  * Validation: See wasm-validator.h.
//

#ifndef __wasm_h__
#define __wasm_h__

#include <cassert>
#include <cstddef>
#include <cstdint>
#include <map>
#include <vector>

#include "emscripten-optimizer/simple_ast.h"
#include "pretty_printing.h"

namespace wasm {

// We use a Name for all of the identifiers. These are IStrings, so they are
// all interned - comparisons etc are just pointer comparisons, so there is no
// perf loss. Having names everywhere makes using the AST much nicer.

struct Name : public cashew::IString {
  Name() : cashew::IString() {}
  Name(const char *str) : cashew::IString(str) {}
  Name(cashew::IString str) : cashew::IString(str) {}

  friend std::ostream& operator<<(std::ostream &o, Name name) {
    assert(name.str);
    return o << '$' << name.str; // reference interpreter requires we prefix all names
  }

  static Name fromInt(size_t i) {
    return cashew::IString(std::to_string(i).c_str(), false);
  }
};

// Types

enum WasmType {
  none,
  i32,
  i64,
  f32,
  f64
};

const char* printWasmType(WasmType type) {
  switch (type) {
    case WasmType::none: return "none";
    case WasmType::i32: return "i32";
    case WasmType::i64: return "i64";
    case WasmType::f32: return "f32";
    case WasmType::f64: return "f64";
  }
}

unsigned getWasmTypeSize(WasmType type) {
  switch (type) {
    case WasmType::none: abort();
    case WasmType::i32: return 4;
    case WasmType::i64: return 8;
    case WasmType::f32: return 4;
    case WasmType::f64: return 8;
  }
}

bool isWasmTypeFloat(WasmType type) {
  switch (type) {
    case f32:
    case f64: return true;
    default: return false;
  }
}

WasmType getWasmType(unsigned size, bool float_) {
  if (size < 4) return WasmType::i32;
  if (size == 4) return float_ ? WasmType::f32 : WasmType::i32;
  if (size == 8) return float_ ? WasmType::f64 : WasmType::i64;
  abort();
}

// Literals

struct Literal {
  WasmType type;
  union {
    int32_t i32;
    int64_t i64;
    float f32;
    double f64;
  };

  Literal() : type(WasmType::none), f64(0) {}
  Literal(int32_t  init) : type(WasmType::i32), i32(init) {}
  Literal(uint32_t init) : type(WasmType::i32), i32(init) {}
  Literal(int64_t  init) : type(WasmType::i64), i64(init) {}
  Literal(uint64_t init) : type(WasmType::i64), i64(init) {}
  Literal(float    init) : type(WasmType::f32), f32(init) {}
  Literal(double   init) : type(WasmType::f64), f64(init) {}

  int32_t geti32() { assert(type == WasmType::i32); return i32; }
  int64_t geti64() { assert(type == WasmType::i64); return i64; }
  float   getf32() { assert(type == WasmType::f32); return f32; }
  double  getf64() { assert(type == WasmType::f64); return f64; }

  int32_t reinterpreti32() { assert(type == WasmType::f32); return i32; }
  int64_t reinterpreti64() { assert(type == WasmType::f64); return i64; }
  float   reinterpretf32() { assert(type == WasmType::i32); return f32; }
  double  reinterpretf64() { assert(type == WasmType::i64); return f64; }

  int64_t getInteger() {
    switch (type) {
      case WasmType::i32: return i32;
      case WasmType::i64: return i64;
      default: abort();
    }
  }

  double getFloat() {
    switch (type) {
      case WasmType::f32: return f32;
      case WasmType::f64: return f64;
      default: abort();
    }
  }

  bool operator==(Literal& other) {
    if (type != other.type) return false;
    switch (type) {
      case WasmType::none: return true;
      case WasmType::i32: return i32 == other.i32;
      case WasmType::i64: return i64 == other.i64;
      // reinterpret floating-point, to avoid nan != nan
      case WasmType::f32: return reinterpreti32() == other.reinterpreti32();
      case WasmType::f64: return reinterpreti64() == other.reinterpreti64();
      default: abort();
    }
  }

  void printFloat(std::ostream &o, float f) {
    if (isnan(f)) {
      union {
        float ff;
        uint32_t ll;
      } u;
      u.ff = f;
      o << "nan:" << std::hex << u.ll << std::dec;
      return;
    }
    printDouble(o, f);
  }

  void printDouble(std::ostream &o, double d) {
    if (d == 0 && 1/d < 0) {
      o << "-0";
      return;
    }
    if (isnan(d)) {
      union {
        double dd;
        uint64_t ll;
      } u;
      u.dd = d;
      o << "nan:" << std::hex << u.ll << std::dec;
      return;
    }
    const char *text = cashew::JSPrinter::numToString(d);
    // spec interpreter hates floats starting with '.'
    if (text[0] == '.') {
      o << '0';
    } else if (text[0] == '-' && text[1] == '.') {
      o << "-0";
      text++;
    }
    o << text;
  }

  friend std::ostream& operator<<(std::ostream &o, Literal literal) {
    o << '(';
    prepareMinorColor(o) << printWasmType(literal.type) << ".const ";
    switch (literal.type) {
      case none: o << "?"; break;
      case WasmType::i32: o << literal.i32; break;
      case WasmType::i64: o << literal.i64; break;
      case WasmType::f32: literal.printFloat(o, literal.f32); break;
      case WasmType::f64: literal.printDouble(o, literal.f64); break;
    }
    restoreNormalColor(o);
    return o << ')';
  }
};

// Operators

enum UnaryOp {
  Clz, Ctz, Popcnt, // int
  Neg, Abs, Ceil, Floor, Trunc, Nearest, Sqrt // float
};

enum BinaryOp {
  Add, Sub, Mul, // int or float
  DivS, DivU, RemS, RemU, And, Or, Xor, Shl, ShrU, ShrS, // int
  Div, CopySign, Min, Max // float
};

enum RelationalOp {
  Eq, Ne, // int or float
  LtS, LtU, LeS, LeU, GtS, GtU, GeS, GeU, // int
  Lt, Le, Gt, Ge // float
};

enum ConvertOp {
  ExtendSInt32, ExtendUInt32, WrapInt64, TruncSFloat32, TruncUFloat32, TruncSFloat64, TruncUFloat64, ReinterpretFloat, // int
  ConvertSInt32, ConvertUInt32, ConvertSInt64, ConvertUInt64, PromoteFloat32, DemoteFloat64, ReinterpretInt // float
};

enum HostOp {
  PageSize, MemorySize, GrowMemory, HasFeature
};

// Expressions

class Expression {
public:
  enum Id {
    InvalidId = 0,
    BlockId = 1,
    IfId = 2,
    LoopId = 3,
    LabelId = 4,
    BreakId = 5,
    SwitchId =6 ,
    CallId = 7,
    CallImportId = 8,
    CallIndirectId = 9,
    GetLocalId = 10,
    SetLocalId = 11,
    LoadId = 12,
    StoreId = 13,
    ConstId = 14,
    UnaryId = 15,
    BinaryId = 16,
    CompareId = 17,
    ConvertId = 18,
    SelectId = 19,
    HostId = 20,
    NopId = 21,
    UnreachableId = 22
  };
  Id _id;

  WasmType type; // the type of the expression: its *output*, not necessarily its input(s)

  Expression() : _id(InvalidId), type(none) {}
  Expression(Id id) : _id(id), type(none) {}

  template<class T>
  bool is() {
    return _id == T()._id;
  }

  template<class T>
  T* dyn_cast() {
    return _id == T()._id ? (T*)this : nullptr;
  }

  std::ostream& print(std::ostream &o, unsigned indent); // avoid virtual here, for performance

  friend std::ostream& operator<<(std::ostream &o, Expression* expression) {
    return expression->print(o, 0);
  }

  static std::ostream& printFullLine(std::ostream &o, unsigned indent, Expression *expression) {
    doIndent(o, indent);
    expression->print(o, indent);
    return o << '\n';
  }
};

typedef std::vector<Expression*> ExpressionList; // TODO: optimize?

class Nop : public Expression {
public:
  Nop() : Expression(NopId) {}

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    return printMinorOpening(o, "nop") << ')';
  }
};

class Block : public Expression {
public:
  Block() : Expression(BlockId) {}

  Name name;
  ExpressionList list;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    printOpening(o, "block");
    if (name.is()) {
      o << ' ' << name;
    }
    incIndent(o, indent);
    for (auto expression : list) {
      printFullLine(o, indent, expression);
    }
    return decIndent(o, indent);
  }
};

class If : public Expression {
public:
  If() : Expression(IfId), ifFalse(nullptr) {}

  Expression *condition, *ifTrue, *ifFalse;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    printOpening(o, ifFalse ? "if_else" : "if");
    incIndent(o, indent);
    printFullLine(o, indent, condition);
    printFullLine(o, indent, ifTrue);
    if (ifFalse) printFullLine(o, indent, ifFalse);
    return decIndent(o, indent);
  }
};

class Loop : public Expression {
public:
  Loop() : Expression(LoopId) {}

  Name out, in;
  Expression *body;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    printOpening(o, "loop");
    if (out.is()) {
      o << ' ' << out;
      assert(in.is()); // if just one is printed, it must be the in
    }
    if (in.is()) {
      o << ' ' << in;
    }
    incIndent(o, indent);
    printFullLine(o, indent, body);
    return decIndent(o, indent);
  }
};

class Label : public Expression {
public:
  Label() : Expression(LabelId) {}

  Name name;
  Expression* body;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    printOpening(o, "label ") << name;
    incIndent(o, indent);
    printFullLine(o, indent, body);
    return decIndent(o, indent);
  }
};

class Break : public Expression {
public:
  Break() : Expression(BreakId), value(nullptr) {}

  Name name;
  Expression *value;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    printOpening(o, "br ") << name;
    incIndent(o, indent);
    if (value) printFullLine(o, indent, value);
    return decIndent(o, indent);
  }
};

class Switch : public Expression {
public:
  Switch() : Expression(SwitchId) {}

  struct Case {
    Name name;
    Expression *body;
    Case() {}
    Case(Name name, Expression *body) : name(name), body(body) {}
  };

  Name name;
  Expression *value;
  std::vector<Name> targets;
  Name default_;
  std::vector<Case> cases;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    printOpening(o, "tableswitch ");
    if (name.is()) o << name;
    incIndent(o, indent);
    printFullLine(o, indent, value);
    doIndent(o, indent) << "[ ";
    for (auto& t : targets) {
      o << (t.is() ? t.str : "br-out") << ' ';
    }
    o << "] (default " << (default_.is() ? default_.str : "br-out") << ")\n";
    for (auto& c : cases) {
      doIndent(o, indent);
      printMinorOpening(o, "case ") << c.name.str;
      incIndent(o, indent);
      printFullLine(o, indent, c.body);
      decIndent(o, indent) << '\n';
    }
    return decIndent(o, indent);
  }

};

class Call : public Expression {
public:
  Call() : Expression(CallId) {}

  Name target;
  ExpressionList operands;

  std::ostream& printBody(std::ostream &o, unsigned indent) {
    o << target;
    if (operands.size() > 0) {
      incIndent(o, indent);
      for (auto operand : operands) {
        printFullLine(o, indent, operand);
      }
      decIndent(o, indent);
    } else {
      o << ')';
    }
    return o;
  }

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    printOpening(o, "call ");
    return printBody(o, indent);
  }
};

class CallImport : public Call {
public:
  CallImport() {
    _id = CallImportId;
  }

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    printOpening(o, "call_import ");
    return printBody(o, indent);
  }
};

class FunctionType {
public:
  Name name;
  WasmType result;
  std::vector<WasmType> params;

  std::ostream& print(std::ostream &o, unsigned indent, bool full=false) {
    if (full) {
      printOpening(o, "type") << ' ' << name << " (func";
    }
    if (params.size() > 0) {
      o << ' ';
      printMinorOpening(o, "param");
      for (auto& param : params) {
        o << ' ' << printWasmType(param);
      }
      o << ')';
    }
    if (result != none) {
      o << ' ';
      printMinorOpening(o, "result ") << printWasmType(result) << ')';
    }
    if (full) {
      o << "))";;
    }
    return o;
  }

  bool operator==(FunctionType& b) {
    if (name != b.name) return false; // XXX
    if (result != b.result) return false;
    if (params.size() != b.params.size()) return false;
    for (size_t i = 0; i < params.size(); i++) {
      if (params[i] != b.params[i]) return false;
    }
    return true;
  }
  bool operator!=(FunctionType& b) {
    return !(*this == b);
  }
};

class CallIndirect : public Expression {
public:
  CallIndirect() : Expression(CallIndirectId) {}

  FunctionType *type;
  Expression *target;
  ExpressionList operands;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    printOpening(o, "call_indirect ") << type->name;
    incIndent(o, indent);
    printFullLine(o, indent, target);
    for (auto operand : operands) {
      printFullLine(o, indent, operand);
    }
    return decIndent(o, indent);
  }
};

class GetLocal : public Expression {
public:
  GetLocal() : Expression(GetLocalId) {}

  Name name;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    return printOpening(o, "get_local ") << name << ')';
  }
};

class SetLocal : public Expression {
public:
  SetLocal() : Expression(SetLocalId) {}

  Name name;
  Expression *value;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    printOpening(o, "set_local ") << name;
    incIndent(o, indent);
    printFullLine(o, indent, value);
    return decIndent(o, indent);
  }
};

class Load : public Expression {
public:
  Load() : Expression(LoadId) {}

  unsigned bytes;
  bool signed_;
  uint32_t offset;
  unsigned align;
  Expression *ptr;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    o << '(';
    prepareColor(o) << printWasmType(type) << ".load";
    if (bytes < 4) {
      if (bytes == 1) {
        o << '8';
      } else if (bytes == 2) {
        o << "16";
      } else {
        abort();
      }
      o << (signed_ ? "_s" : "_u");
    }
    restoreNormalColor(o);
    if (align) {
      o << " align=" << align;
    }
    if (offset) {
      o << " offset=" << offset;
    }
    incIndent(o, indent);
    printFullLine(o, indent, ptr);
    return decIndent(o, indent);
  }
};

class Store : public Expression {
public:
  Store() : Expression(StoreId) {}

  unsigned bytes;
  uint32_t offset;
  unsigned align;
  Expression *ptr, *value;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    o << '(';
    prepareColor(o) << printWasmType(type) << ".store";
    if (bytes < 4) {
      if (bytes == 1) {
        o << '8';
      } else if (bytes == 2) {
        o << "16";
      } else {
        abort();
      }
    }
    restoreNormalColor(o);
    if (align) {
      o << " align=" << align;
    }
    if (offset) {
      o << " offset=" << offset;
    }
    incIndent(o, indent);
    printFullLine(o, indent, ptr);
    printFullLine(o, indent, value);
    return decIndent(o, indent);
  }
};

class Const : public Expression {
public:
  Const() : Expression(ConstId) {}

  Literal value;

  Const* set(Literal value_) {
    value = value_;
    type = value.type;
    return this;
  }

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    return o << value;
  }
};

class Unary : public Expression {
public:
  Unary() : Expression(UnaryId) {}

  UnaryOp op;
  Expression *value;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    o << '(';
    prepareColor(o) << printWasmType(type) << '.';
    switch (op) {
      case Clz:     o << "clz";     break;
      case Ctz:     o << "ctz";     break;
      case Popcnt:  o << "popcnt";  break;
      case Neg:     o << "neg";     break;
      case Abs:     o << "abs";     break;
      case Ceil:    o << "ceil";    break;
      case Floor:   o << "floor";   break;
      case Trunc:   o << "trunc";   break;
      case Nearest: o << "nearest"; break;
      case Sqrt:    o << "sqrt";    break;
      default: abort();
    }
    incIndent(o, indent);
    printFullLine(o, indent, value);
    return decIndent(o, indent);
  }
};

class Binary : public Expression {
public:
  Binary() : Expression(BinaryId) {}

  BinaryOp op;
  Expression *left, *right;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    o << '(';
    prepareColor(o) << printWasmType(type) << '.';
    switch (op) {
      case Add:      o << "add";      break;
      case Sub:      o << "sub";      break;
      case Mul:      o << "mul";      break;
      case DivS:     o << "div_s";    break;
      case DivU:     o << "div_u";    break;
      case RemS:     o << "rem_s";    break;
      case RemU:     o << "rem_u";    break;
      case And:      o << "and";      break;
      case Or:       o << "or";       break;
      case Xor:      o << "xor";      break;
      case Shl:      o << "shl";      break;
      case ShrU:     o << "shr_u";    break;
      case ShrS:     o << "shr_s";    break;
      case Div:      o << "div";      break;
      case CopySign: o << "copysign"; break;
      case Min:      o << "min";      break;
      case Max:      o << "max";      break;
      default: abort();
    }
    restoreNormalColor(o);
    incIndent(o, indent);
    printFullLine(o, indent, left);
    printFullLine(o, indent, right);
    return decIndent(o, indent);
  }

  // the type is always the type of the operands
  void finalize() {
    type = left->type;
  }
};

class Compare : public Expression {
public:
  Compare() : Expression(CompareId) {
    type = WasmType::i32; // output is always i32
  }

  RelationalOp op;
  WasmType inputType;
  Expression *left, *right;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    o << '(';
    prepareColor(o) << printWasmType(inputType) << '.';
    switch (op) {
      case Eq:  o << "eq";   break;
      case Ne:  o << "ne";   break;
      case LtS: o << "lt_s"; break;
      case LtU: o << "lt_u"; break;
      case LeS: o << "le_s"; break;
      case LeU: o << "le_u"; break;
      case GtS: o << "gt_s"; break;
      case GtU: o << "gt_u"; break;
      case GeS: o << "ge_s"; break;
      case GeU: o << "ge_u"; break;
      case Lt:  o << "lt";  break;
      case Le:  o << "le";  break;
      case Gt:  o << "gt";  break;
      case Ge:  o << "ge";  break;
      default: abort();
    }
    restoreNormalColor(o);
    incIndent(o, indent);
    printFullLine(o, indent, left);
    printFullLine(o, indent, right);
    return decIndent(o, indent);
  }
};

class Convert : public Expression {
public:
  Convert() : Expression(ConvertId) {}

  ConvertOp op;
  Expression *value;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    o << '(';
    prepareColor(o) << printWasmType(type) << '.';
    switch (op) {
      case ExtendSInt32:     o << "extend_s/i32"; break;
      case ExtendUInt32:     o << "extend_u/i32"; break;
      case WrapInt64:        o << "wrap/i64"; break;
      case TruncSFloat32:    o << "trunc_s/f32"; break;
      case TruncUFloat32:    o << "trunc_u/f32"; break;
      case TruncSFloat64:    o << "trunc_s/f64"; break;
      case TruncUFloat64:    o << "trunc_u/f64"; break;
      case ReinterpretFloat: o << "reinterpret/" << (type == i64 ? "f64" : "f32"); break;
      case ConvertUInt32:    o << "convert_u/i32"; break;
      case ConvertSInt32:    o << "convert_s/i32"; break;
      case ConvertUInt64:    o << "convert_u/i64"; break;
      case ConvertSInt64:    o << "convert_s/i64"; break;
      case PromoteFloat32:   o << "promote/f32"; break;
      case DemoteFloat64:    o << "demote/f64"; break;
      case ReinterpretInt:   o << "reinterpret" << (type == f64 ? "i64" : "i32"); break;
      default: abort();
    }
    restoreNormalColor(o);
    incIndent(o, indent);
    printFullLine(o, indent, value);
    return decIndent(o, indent);
  }
};

class Select : public Expression {
public:
  Select() : Expression(SelectId) {}

  Expression *condition, *ifTrue, *ifFalse;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    o << '(';
    prepareColor(o) << printWasmType(type) << ".select";
    incIndent(o, indent);
    printFullLine(o, indent, condition);
    printFullLine(o, indent, ifTrue);
    printFullLine(o, indent, ifFalse);
    return decIndent(o, indent);
  }
};

class Host : public Expression {
public:
  Host() : Expression(HostId) {}

  HostOp op;
  Name nameOperand;
  ExpressionList operands;

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    switch (op) {
      case PageSize: printOpening(o, "pagesize") << ')'; break;
      case MemorySize: printOpening(o, "memorysize") << ')'; break;
      case GrowMemory: {
        printOpening(o, "grow_memory");
        incIndent(o, indent);
        printFullLine(o, indent, operands[0]);
        decIndent(o, indent);
        break;
      }
      case HasFeature: printOpening(o, "hasfeature ") << nameOperand << ')'; break;
      default: abort();
    }
    return o;
  }
};

class Unreachable : public Expression {
public:
  Unreachable() : Expression(UnreachableId) {}

  std::ostream& doPrint(std::ostream &o, unsigned indent) {
    return printMinorOpening(o, "unreachable") << ')';
  }
};

// Globals

struct NameType {
  Name name;
  WasmType type;
  NameType() : name(nullptr), type(none) {}
  NameType(Name name, WasmType type) : name(name), type(type) {}
};

class Function {
public:
  Name name;
  WasmType result;
  std::vector<NameType> params;
  std::vector<NameType> locals;
  Name type; // if null, it is implicit in params and result
  Expression *body;

  Function() : result(none) {}

  std::ostream& print(std::ostream &o, unsigned indent) {
    printOpening(o, "func ", true) << name;
    if (params.size() > 0) {
      for (auto& param : params) {
        o << ' ';
        printMinorOpening(o, "param ") << param.name << ' ' << printWasmType(param.type) << ")";
      }
    }
    if (result != none) {
      o << ' ';
      printMinorOpening(o, "result ") << printWasmType(result) << ")";
    }
    incIndent(o, indent);
    for (auto& local : locals) {
      doIndent(o, indent);
      printMinorOpening(o, "local ") << local.name << ' ' << printWasmType(local.type) << ")\n";
    }
    Expression::printFullLine(o, indent, body);
    return decIndent(o, indent);
  }
};

class Import {
public:
  Name name, module, base; // name = module.base
  FunctionType type;

  std::ostream& print(std::ostream &o, unsigned indent) {
    printOpening(o, "import ") << name << ' ';
    printText(o, module.str) << ' ';
    printText(o, base.str) << ' ';
    type.print(o, indent);
    return o << ')';
  }
};

class Export {
public:
  Name name;
  Name value;

  std::ostream& print(std::ostream &o, unsigned indent) {
    printOpening(o, "export ");
    return printText(o, name.str) << ' ' << value << ')';
  }
};

class Table {
public:
  std::vector<Name> names;

  std::ostream& print(std::ostream &o, unsigned indent) {
    printOpening(o, "table");
    for (auto name : names) {
      o << ' ' << name;
    }
    return o << ')';
  }
};

class Memory {
public:
  struct Segment {
    size_t offset;
    const char* data;
    size_t size;
    Segment(size_t offset, const char *data, size_t size) : offset(offset), data(data), size(size) {}
  };

  size_t initial, max;
  std::vector<Segment> segments;

  Memory() : initial(0), max((uint32_t)-1) {}
};

class Module {
public:
  // internal wasm contents (don't access these from outside; use add*() and the *Map objects)
  std::vector<FunctionType*> functionTypes;
  std::vector<Import*> imports;
  std::vector<Export*> exports;
  std::vector<Function*> functions;

  // publicly-accessible content
  std::map<Name, FunctionType*> functionTypesMap;
  std::map<Name, Import*> importsMap;
  std::map<Name, Export*> exportsMap;
  std::map<Name, Function*> functionsMap;
  Table table;
  Memory memory;

  Module() : functionTypeIndex(0), importIndex(0), exportIndex(0), functionIndex(0) {}

  void addFunctionType(FunctionType* curr) {
    Name numericName = Name::fromInt(functionTypeIndex);
    if (curr->name.isNull()) {
      curr->name = numericName;
    }
    functionTypes.push_back(curr);
    functionTypesMap[curr->name] = curr;
    functionTypesMap[numericName] = curr;
    functionTypeIndex++;
  }
  void addImport(Import* curr) {
    Name numericName = Name::fromInt(importIndex);
    if (curr->name.isNull()) {
      curr->name = numericName;
    }
    imports.push_back(curr);
    importsMap[curr->name] = curr;
    importsMap[numericName] = curr;
    importIndex++;
  }
  void addExport(Export* curr) {
    Name numericName = Name::fromInt(exportIndex);
    if (curr->name.isNull()) {
      curr->name = numericName;
    }
    exports.push_back(curr);
    exportsMap[curr->name] = curr;
    exportsMap[numericName] = curr;
    exportIndex++;
  }
  void addFunction(Function* curr) {
    Name numericName = Name::fromInt(functionIndex);
    if (curr->name.isNull()) {
      curr->name = numericName;
    }
    functions.push_back(curr);
    functionsMap[curr->name] = curr;
    functionsMap[numericName] = curr;
    functionIndex++;
  }

  void removeImport(Name name) {
    for (size_t i = 0; i < imports.size(); i++) {
      if (imports[i]->name == name) {
        imports.erase(imports.begin() + i);
        break;
      }
    }
    importsMap.erase(name);
  }

  friend std::ostream& operator<<(std::ostream &o, Module module) {
    unsigned indent = 0;
    printOpening(o, "module", true);
    incIndent(o, indent);
    doIndent(o, indent);
    printOpening(o, "memory") << " " << module.memory.initial;
    if (module.memory.max) o << " " << module.memory.max;
    for (auto segment : module.memory.segments) {
      o << " (segment " << segment.offset << " \"" << segment.data << "\")";
    }
    o << ")\n";
    for (auto& curr : module.functionTypes) {
      doIndent(o, indent);
      curr->print(o, indent, true);
      o << '\n';
    }
    for (auto& curr : module.imports) {
      doIndent(o, indent);
      curr->print(o, indent);
      o << '\n';
    }
    for (auto& curr : module.exports) {
      doIndent(o, indent);
      curr->print(o, indent);
      o << '\n';
    }
    if (module.table.names.size() > 0) {
      doIndent(o, indent);
      module.table.print(o, indent);
      o << '\n';
    }
    for (auto& curr : module.functions) {
      doIndent(o, indent);
      curr->print(o, indent);
      o << '\n';
    }
    decIndent(o, indent);
    return o << '\n';
  }

private:
  size_t functionTypeIndex, importIndex, exportIndex, functionIndex;
};

//
// Simple WebAssembly AST visiting. Useful for anything that wants to do
// something different for each AST node type, like printing, interpreting,
// etc.
//

template<class ReturnType>
struct WasmVisitor {
  // should be pure virtual, but https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51048
  // Expression visitors
  virtual ReturnType visitBlock(Block *curr) { abort(); }
  virtual ReturnType visitIf(If *curr) { abort(); }
  virtual ReturnType visitLoop(Loop *curr) { abort(); }
  virtual ReturnType visitLabel(Label *curr) { abort(); }
  virtual ReturnType visitBreak(Break *curr) { abort(); }
  virtual ReturnType visitSwitch(Switch *curr) { abort(); }
  virtual ReturnType visitCall(Call *curr) { abort(); }
  virtual ReturnType visitCallImport(CallImport *curr) { abort(); }
  virtual ReturnType visitCallIndirect(CallIndirect *curr) { abort(); }
  virtual ReturnType visitGetLocal(GetLocal *curr) { abort(); }
  virtual ReturnType visitSetLocal(SetLocal *curr) { abort(); }
  virtual ReturnType visitLoad(Load *curr) { abort(); }
  virtual ReturnType visitStore(Store *curr) { abort(); }
  virtual ReturnType visitConst(Const *curr) { abort(); }
  virtual ReturnType visitUnary(Unary *curr) { abort(); }
  virtual ReturnType visitBinary(Binary *curr) { abort(); }
  virtual ReturnType visitCompare(Compare *curr) { abort(); }
  virtual ReturnType visitConvert(Convert *curr) { abort(); }
  virtual ReturnType visitSelect(Select *curr) { abort(); }
  virtual ReturnType visitHost(Host *curr) { abort(); }
  virtual ReturnType visitNop(Nop *curr) { abort(); }
  virtual ReturnType visitUnreachable(Unreachable *curr) { abort(); }
  // Module-level visitors
  virtual ReturnType visitFunctionType(FunctionType *curr) { abort(); }
  virtual ReturnType visitImport(Import *curr) { abort(); }
  virtual ReturnType visitExport(Export *curr) { abort(); }
  virtual ReturnType visitFunction(Function *curr) { abort(); }
  virtual ReturnType visitTable(Table *curr) { abort(); }
  virtual ReturnType visitMemory(Memory *curr) { abort(); }
  virtual ReturnType visitModule(Module *curr) { abort(); }

  ReturnType visit(Expression *curr) {
    assert(curr);
    switch (curr->_id) {
      case Expression::Id::BlockId: return visitBlock((Block*)curr);
      case Expression::Id::IfId: return visitIf((If*)curr);
      case Expression::Id::LoopId: return visitLoop((Loop*)curr);
      case Expression::Id::LabelId: return visitLabel((Label*)curr);
      case Expression::Id::BreakId: return visitBreak((Break*)curr);
      case Expression::Id::SwitchId: return visitSwitch((Switch*)curr);
      case Expression::Id::CallId: return visitCall((Call*)curr);
      case Expression::Id::CallImportId: return visitCallImport((CallImport*)curr);
      case Expression::Id::CallIndirectId: return visitCallIndirect((CallIndirect*)curr);
      case Expression::Id::GetLocalId: return visitGetLocal((GetLocal*)curr);
      case Expression::Id::SetLocalId: return visitSetLocal((SetLocal*)curr);
      case Expression::Id::LoadId: return visitLoad((Load*)curr);
      case Expression::Id::StoreId: return visitStore((Store*)curr);
      case Expression::Id::ConstId: return visitConst((Const*)curr);
      case Expression::Id::UnaryId: return visitUnary((Unary*)curr);
      case Expression::Id::BinaryId: return visitBinary((Binary*)curr);
      case Expression::Id::CompareId: return visitCompare((Compare*)curr);
      case Expression::Id::ConvertId: return visitConvert((Convert*)curr);
      case Expression::Id::SelectId: return visitSelect((Select*)curr);
      case Expression::Id::HostId: return visitHost((Host*)curr);
      case Expression::Id::NopId: return visitNop((Nop*)curr);
      case Expression::Id::UnreachableId: return visitUnreachable((Unreachable*)curr);
      default: {
        std::cerr << "visiting unknown expression " << curr->_id << '\n';
        abort();
      }
    }
  }
};

std::ostream& Expression::print(std::ostream &o, unsigned indent) {
  struct ExpressionPrinter : public WasmVisitor<void> {
    std::ostream &o;
    unsigned indent;

    ExpressionPrinter(std::ostream &o, unsigned indent) : o(o), indent(indent) {}

    void visitBlock(Block *curr) override { curr->doPrint(o, indent); }
    void visitIf(If *curr) override { curr->doPrint(o, indent); }
    void visitLoop(Loop *curr) override { curr->doPrint(o, indent); }
    void visitLabel(Label *curr) override { curr->doPrint(o, indent); }
    void visitBreak(Break *curr) override { curr->doPrint(o, indent); }
    void visitSwitch(Switch *curr) override { curr->doPrint(o, indent); }
    void visitCall(Call *curr) override { curr->doPrint(o, indent); }
    void visitCallImport(CallImport *curr) override { curr->doPrint(o, indent); }
    void visitCallIndirect(CallIndirect *curr) override { curr->doPrint(o, indent); }
    void visitGetLocal(GetLocal *curr) override { curr->doPrint(o, indent); }
    void visitSetLocal(SetLocal *curr) override { curr->doPrint(o, indent); }
    void visitLoad(Load *curr) override { curr->doPrint(o, indent); }
    void visitStore(Store *curr) override { curr->doPrint(o, indent); }
    void visitConst(Const *curr) override { curr->doPrint(o, indent); }
    void visitUnary(Unary *curr) override { curr->doPrint(o, indent); }
    void visitBinary(Binary *curr) override { curr->doPrint(o, indent); }
    void visitCompare(Compare *curr) override { curr->doPrint(o, indent); }
    void visitConvert(Convert *curr) override { curr->doPrint(o, indent); }
    void visitSelect(Select *curr) override { curr->doPrint(o, indent); }
    void visitHost(Host *curr) override { curr->doPrint(o, indent); }
    void visitNop(Nop *curr) override { curr->doPrint(o, indent); }
    void visitUnreachable(Unreachable *curr) override { curr->doPrint(o, indent); }
  };

  ExpressionPrinter(o, indent).visit(this);

  return o;
}

//
// Simple WebAssembly children-first walking (i.e., post-order, if you look
// at the children as subtrees of the current node), with the ability to
// the current expression node. Useful for writing optimization passes.
//

struct WasmWalker : public WasmVisitor<void> {
  Expression* replace;

  WasmWalker() : replace(nullptr) {}

  // the visit* methods can call this to replace the current node
  void replaceCurrent(Expression *expression) {
    replace = expression;
  }

  // By default, do nothing
  void visitBlock(Block *curr) override {}
  void visitIf(If *curr) override {}
  void visitLoop(Loop *curr) override {}
  void visitLabel(Label *curr) override {}
  void visitBreak(Break *curr) override {}
  void visitSwitch(Switch *curr) override {}
  void visitCall(Call *curr) override {}
  void visitCallImport(CallImport *curr) override {}
  void visitCallIndirect(CallIndirect *curr) override {}
  void visitGetLocal(GetLocal *curr) override {}
  void visitSetLocal(SetLocal *curr) override {}
  void visitLoad(Load *curr) override {}
  void visitStore(Store *curr) override {}
  void visitConst(Const *curr) override {}
  void visitUnary(Unary *curr) override {}
  void visitBinary(Binary *curr) override {}
  void visitCompare(Compare *curr) override {}
  void visitConvert(Convert *curr) override {}
  void visitSelect(Select *curr) override {}
  void visitHost(Host *curr) override {}
  void visitNop(Nop *curr) override {}
  void visitUnreachable(Unreachable *curr) override {}

  void visitFunctionType(FunctionType *curr) override {}
  void visitImport(Import *curr) override {}
  void visitExport(Export *curr) override {}
  void visitFunction(Function *curr) override {}
  void visitTable(Table *curr) override {}
  void visitMemory(Memory *curr) override {}
  void visitModule(Module *curr) override {}

  // children-first
  void walk(Expression*& curr) {
    if (!curr) return;

    struct ChildWalker : public WasmVisitor {
      WasmWalker& parent;

      ChildWalker(WasmWalker& parent) : parent(parent) {}

      void visitBlock(Block *curr) override {
        ExpressionList& list = curr->list;
        for (size_t z = 0; z < list.size(); z++) {
          parent.walk(list[z]);
        }
      }
      void visitIf(If *curr) override {
        parent.walk(curr->condition);
        parent.walk(curr->ifTrue);
        parent.walk(curr->ifFalse);
      }
      void visitLoop(Loop *curr) override {
        parent.walk(curr->body);
      }
      void visitLabel(Label *curr) override {}
      void visitBreak(Break *curr) override {
        parent.walk(curr->value);
      }
      void visitSwitch(Switch *curr) override {
        parent.walk(curr->value);
        for (auto& case_ : curr->cases) {
          parent.walk(case_.body);
        }
      }
      void visitCall(Call *curr) override {
        ExpressionList& list = curr->operands;
        for (size_t z = 0; z < list.size(); z++) {
          parent.walk(list[z]);
        }
      }
      void visitCallImport(CallImport *curr) override {
        ExpressionList& list = curr->operands;
        for (size_t z = 0; z < list.size(); z++) {
          parent.walk(list[z]);
        }
      }
      void visitCallIndirect(CallIndirect *curr) override {
        parent.walk(curr->target);
        ExpressionList& list = curr->operands;
        for (size_t z = 0; z < list.size(); z++) {
          parent.walk(list[z]);
        }
      }
      void visitGetLocal(GetLocal *curr) override {}
      void visitSetLocal(SetLocal *curr) override {
        parent.walk(curr->value);
      }
      void visitLoad(Load *curr) override {
        parent.walk(curr->ptr);
      }
      void visitStore(Store *curr) override {
        parent.walk(curr->ptr);
        parent.walk(curr->value);
      }
      void visitConst(Const *curr) override {}
      void visitUnary(Unary *curr) override {
        parent.walk(curr->value);
      }
      void visitBinary(Binary *curr) override {
        parent.walk(curr->left);
        parent.walk(curr->right);
      }
      void visitCompare(Compare *curr) override {
        parent.walk(curr->left);
        parent.walk(curr->right);
      }
      void visitConvert(Convert *curr) override {
        parent.walk(curr->value);
      }
      void visitSelect(Select *curr) override {
        parent.walk(curr->condition);
        parent.walk(curr->ifTrue);
        parent.walk(curr->ifFalse);
      }
      void visitHost(Host *curr) override {
        ExpressionList& list = curr->operands;
        for (size_t z = 0; z < list.size(); z++) {
          parent.walk(list[z]);
        }
      }
      void visitNop(Nop *curr) override {}
      void visitUnreachable(Unreachable *curr) override {}
    };

    ChildWalker(*this).visit(curr);

    visit(curr);

    if (replace) {
      curr = replace;
      replace = nullptr;
    }
  }

  void startWalk(Function *func) {
    walk(func->body);
  }

  void startWalk(Module *module) {
    for (auto curr : module->functionTypes) {
      visitFunctionType(curr);
      assert(!replace);
    }
    for (auto curr : module->imports) {
      visitImport(curr);
      assert(!replace);
    }
    for (auto curr : module->exports) {
      visitExport(curr);
      assert(!replace);
    }
    for (auto curr : module->functions) {
      startWalk(curr);
      visitFunction(curr);
      assert(!replace);
    }
    visitTable(&module->table);
    assert(!replace);
    visitMemory(&module->memory);
    assert(!replace);
    visitModule(module);
    assert(!replace);
  }
};

} // namespace wasm

#endif // __wasm_h__