-
Notifications
You must be signed in to change notification settings - Fork 1
/
coreHint.atd
2383 lines (2096 loc) · 40.2 KB
/
coreHint.atd
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
type scope = [ Source | Target ] <ocaml repr="classic">
type position_phinode = {
prev_block_name : string;
}
type position_command = {
index : int;
register_name : string;
}
(* Position of an instruction is phinode or register *)
type instr_index = [
| Phinode of position_phinode
| Command of position_command
] <ocaml repr="classic">
type position = {
scope : scope;
block_name : string;
instr_index : instr_index;
}
(* If tag of register is one of Physical, Previous, and Ghost *)
type tag = [ Physical | Previous | Ghost ] <ocaml repr="classic">
type register = {
name : string; (* identifier of a register *)
tag : tag; (* indicates whether this register is physical or previous or ghost *)
}
type bop = [ | BopAdd | BopSub | BopMul | BopUdiv
| BopSdiv | BopUrem | BopSrem | BopShl
| BopLshr | BopAshr | BopAnd | BopOr
| BopXor ] <ocaml repr="classic">
type fbop = [ BopFadd | BopFsub | BopFmul | BopFdiv | BopFrem ] <ocaml repr="classic">
type icmp_pred = [ | CondEq | CondNe | CondUgt | CondUge | CondUlt
| CondUle | CondSgt | CondSge | CondSlt | CondSle ] <ocaml repr="classic">
type fcmp_pred = [ CondFfalse | CondFoeq | CondFogt | CondFoge | CondFolt | CondFole | CondFone | CondFord | CondFuno | CondFueq | CondFugt | CondFuge | CondFult | CondFule | CondFune | CondFtrue ] <ocaml repr="classic">
(* integer type of bitsize *)
type int_type = [ IntType of int ] <ocaml repr="classic">
(* float type *)
(* http://llvm.org/docs/LangRef.html#floating-point-types *)
(* http://llvm.org/docs/doxygen/html/classllvm_1_1APFloat.html *)
type float_type = [
| HalfType (* equivalent to Llvm.APFloat.Semantics.IEEEhalf in LLVM ocaml binding *)
(* no matching type in Vellvm *)
| FloatType (* equivalent to Llvm.APFloat.Semantics.IEEEsingle in LLVM ocaml binding *)
(* equivalent to Syntax.LLVMsyntax.Coq_fp_float in Vellvm *)
| DoubleType (* equivalent to Llvm.APFloat.Semantics.IEEEdouble in LLVM ocaml binding *)
(* equivalent to Syntax.LLVMsyntax.Coq_fp_double in Vellvm *)
| FP128Type (* equivalent to Llvm.APFloat.Semantics.IEEEquad in LLVM ocaml binding*)
(* equivalent to Syntax.LLVMsyntax.Coq_fp_fp128 in Vellvm*)
| PPC_FP128Type (* equivalent to Llvm.APFloat.Semantics.PPCDoubleDouble in LLVM ocaml binding *)
(* equivalent to Syntax.LLVMsyntax.Coq_fp_ppc_fp128 in Vellvm*)
| X86_FP80Type (* equivalent to Llvm.APFloat.Semantics.X87DoubleExternded in LLVM ocaml binding *)
(* equivalent to Syntax.LLVMsyntax.Coq_fp_x86_fp80 in Vellvm*)
] <ocaml repr="classic">
type value_type = [
| VoidType
| IntValueType of int_type
| FloatValueType of float_type
| NamedType of string
| PtrType of (int * value_type) (* (addr space, type) *)
| ArrayType of (int * value_type)
| FunctionType of (value_type * (value_type list) * bool * int) (* (return-type, argument-type, is-var-arg, arg-size) *)
| VectorType of (int * value_type)
| StructType of (value_type list) (* list of elements *)
] <ocaml repr="classic">
type const_int = {
int_value : string;
int_type : int_type;
}
type const_float = {
float_value : string;
float_type : float_type;
}
type const_global_var_addr = {
var_id : string;
var_type : value_type;
}
type const_expr_get_element_ptr = {
srcelemty : value_type;
v : constant;
idxlist : constant list;
dstty : value_type;
is_inbounds : bool;
}
type const_expr_bitcast = {
v : constant;
dstty : value_type;
}
type const_expr_inttoptr = {
v : constant;
dstty : value_type;
}
type const_expr_ptrtoint = {
v : constant;
dstty : value_type;
}
type const_expr_binaryop = {
opcode : bop;
v1 : constant;
v2 : constant;
}
type constant_expr = [
| ConstExprGetElementPtr of const_expr_get_element_ptr
| ConstExprBitcast of const_expr_bitcast
| ConstExprInttoptr of const_expr_inttoptr
| ConstExprPtrtoint of const_expr_ptrtoint
| ConstExprBinaryOp of const_expr_binaryop
] <ocaml repr="classic">
type constant = [
| ConstInt of const_int
| ConstFloat of const_float
| ConstNull of (int * value_type) (* addr space, type *)
| ConstUndef of value_type
| ConstGlobalVarAddr of const_global_var_addr
| ConstDataVector of (value_type * constant list)
| ConstZeroInitializer of value_type
| ConstExpr of constant_expr
] <ocaml repr="classic">
type value = [ Id of register | ConstVal of constant ] <ocaml repr="classic">
type size = [ Size of int ] <ocaml repr="classic">
type pointer = {
v : value;
ty : value_type;
}
type binary_operator = {
opcode : bop;
operandtype : value_type;
operand1 : value;
operand2 : value;
}
type float_binary_operator = {
opcode : fbop;
operandtype : value_type;
operand1 : value;
operand2 : value;
}
type integer_compare_inst = {
predicate : icmp_pred;
operandtype : value_type;
operand1 : value;
operand2 : value;
}
type float_compare_inst = {
predicate : fcmp_pred;
operandtype : value_type;
operand1 : value;
operand2 : value;
}
type load_inst = {
pointertype : value_type;
valtype : value_type;
ptrvalue : value;
align : int;
}
type bit_cast_inst = {
fromty : value_type;
v : value;
toty : value_type;
}
type get_element_ptr_inst = {
ty : value_type;
retty : value_type;
ptr : value;
indexes : (size * value) list;
is_inbounds : bool;
}
type int_to_ptr_inst = {
fromty : value_type;
v : value;
toty : value_type;
}
type ptr_to_int_inst = {
fromty : value_type;
v : value;
toty : value_type;
}
type fpext_inst = {
fromty : value_type;
v : value;
toty : value_type;
}
type fptrunc_inst = {
fromty : value_type;
v : value;
toty : value_type;
}
type zext_inst = {
fromty : value_type;
v : value;
toty : value_type;
}
type sext_inst = {
fromty : value_type;
v : value;
toty : value_type;
}
type trunc_inst = {
fromty : value_type;
v : value;
toty : value_type;
}
type fptosi_inst = {
fromty : value_type;
v : value;
toty : value_type;
}
type sitofp_inst = {
fromty : value_type;
v : value;
toty : value_type;
}
type uitofp_inst = {
fromty : value_type;
v : value;
toty : value_type;
}
type select_inst = {
cond : value;
valty : value_type;
trueval : value;
falseval : value;
}
type extract_value_inst = {
aggrty : value_type;
aggrv : value;
idx : int list;
retty : value_type;
}
type insert_value_inst = {
aggrty : value_type;
aggrv : value;
argty : value_type;
argv : value;
idx : int list;
}
type instruction = [
| BinaryOp of binary_operator
| FloatBinaryOp of float_binary_operator
| ICmpInst of integer_compare_inst
| FCmpInst of float_compare_inst
| LoadInst of load_inst
| BitCastInst of bit_cast_inst
| GetElementPtrInst of get_element_ptr_inst
| SelectInst of select_inst
| IntToPtrInst of int_to_ptr_inst
| PtrToIntInst of ptr_to_int_inst
| FpextInst of fpext_inst
| FptruncInst of fptrunc_inst
| ZextInst of zext_inst
| SextInst of sext_inst
| TruncInst of trunc_inst
| FptosiInst of fptosi_inst
| SitofpInst of sitofp_inst
| UitofpInst of uitofp_inst
| InsertValueInst of insert_value_inst
| ExtractValueInst of extract_value_inst
] <ocaml repr="classic">
type expr = [
| Var of register
| Rhs of (register * scope)
| Const of constant
| Insn of instruction
] <ocaml repr="classic">
(*****************************************)
(* Propagates *)
(*****************************************)
type propagate_lessdef = {
lhs : expr;
rhs : expr;
scope : scope;
}
type propagate_noalias = {
lhs : pointer;
rhs : pointer;
scope : scope;
}
type propagate_diffblock = {
lhs : value;
rhs : value;
scope : scope;
}
type propagate_unique = {
register_name : string;
scope : scope;
}
type propagate_private = {
p : register;
scope : scope;
}
type propagate_object = [
| Lessdef of propagate_lessdef
| Noalias of propagate_noalias
| Diffblock of propagate_diffblock
| Maydiff of register
| Unique of propagate_unique
| Private of propagate_private
] <ocaml repr="classic">
type propagate_range = [
| Bounds of (position * position)
| BoundSet of (position * position list)
| Global
] <ocaml repr="classic">
type propagate = {
propagate : propagate_object;
propagate_range : propagate_range;
}
(*****************************************)
(* Inference rules *)
(*****************************************)
type add_sub = {
minusy : register;
z : register;
x : value;
y : value;
sz : size;
}
type add_commutative_tgt = {
z : register;
x : value;
y : value;
sz : size;
}
type add_dist_sub = {
z : register;
minusx : register;
minusy : value;
w : register;
x : value;
y : value;
sz : size;
}
type add_shift = {
y : register;
v : value;
sz : size;
}
type add_signbit = {
x : register;
e1 : value;
e2 : value;
sz : size;
}
type transitivity = {
e1 : expr;
e2 : expr;
e3 : expr;
}
type transitivity_tgt = {
e1 : expr;
e2 : expr;
e3 : expr;
}
type transitivity_pointer_lhs = {
p : value;
q : value;
v : value;
typ : value_type;
align : size;
}
type transitivity_pointer_rhs = {
p : value;
q : value;
v : value;
typ : value_type;
align : size;
}
type substitute = {
x : register;
y : value;
e : expr;
}
type substitute_rev = {
x : register;
y : value;
e : expr;
}
type substitute_tgt = {
x : register;
y : value;
e : expr;
}
type add_onebit = {
z : register;
x : value;
y : value;
}
type add_zext_bool = {
x : register;
y : register;
b : value;
c : const_int;
cprime : const_int;
sz : size;
}
type add_const_not = {
z : register;
y : register;
x : value;
c1 : const_int;
c2 : const_int;
sz : size;
}
type add_mask = {
z : register;
y : register;
yprime : register;
x : value;
c1 : const_int;
c2 : const_int;
sz : size;
}
type add_select_zero = {
z : register;
x : register;
y : register;
c : value;
n : value;
a : value;
sz : size;
}
type add_select_zero2 = {
z : register;
x : register;
y : register;
c : value;
n : value;
a : value;
sz : size;
}
type add_xor_and = {
z : register;
a : value;
b : value;
x : register;
y : register;
sz : size;
}
type add_or_and = {
z : register;
a : value;
b : value;
x : register;
y : register;
sz : size;
}
type and_de_morgan = {
z : register;
x : register;
y : register;
zprime : register;
a : value;
b : value;
sz : size;
}
type and_mone = {
z : value;
x : value;
sz : size;
}
type and_not = {
z : value;
x : value;
y : value;
sz : size;
}
type and_or = {
z : value;
x : value;
y : value;
a : value;
sz : size;
}
type and_or_const2 = {
z : register;
y : register;
yprime : register;
x : value;
c1 : const_int;
c2 : const_int;
c3 : const_int;
sz : size;
}
type and_same = {
z : value;
x : value;
sz : size;
}
type and_true_bool = {
x : value;
y : value;
}
type and_true_bool_tgt = {
x : value;
y : value;
}
type and_undef = {
z : value;
x : value;
sz : size;
}
type and_xor_const = {
z : register;
y : register;
yprime : register;
x : value;
c1 : const_int;
c2 : const_int;
c3 : const_int;
sz : size;
}
type and_zero = {
z : value;
x : value;
sz : size;
}
type and_or_not1 = {
z : register;
x : register;
y : register;
a : value;
b : value;
sz : size;
}
type bitcast_bitcast = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type bitcast_double_i64 = {
src : constant;
tgt : const_int;
}
type bitcast_load = {
ptr : value;
ptrty : value_type;
v1 : value;
ptrty2 : value_type;
v2 : value;
a : size;
}
type bop_associative = {
x : register;
y : register;
z : register;
bop : bop;
c1 : const_int;
c2 : const_int;
c3 : const_int;
sz : size;
}
type bop_commutative = {
e : expr;
bop : bop;
x : value;
y : value;
sz : size;
}
type bop_commutative_rev = {
e : expr;
bop : bop;
x : value;
y : value;
sz : size;
}
type bop_commutative_tgt = {
e : expr;
bop : bop;
x : value;
y : value;
sz : size;
}
type bop_commutative_rev_tgt = {
e : expr;
bop : bop;
x : value;
y : value;
sz : size;
}
type fbop_commutative = {
e : expr;
fbop : fbop;
x : value;
y : value;
fty : float_type;
}
type fbop_commutative_rev = {
e : expr;
fbop : fbop;
x : value;
y : value;
fty : float_type;
}
type fbop_commutative_tgt = {
e : expr;
fbop : fbop;
x : value;
y : value;
fty : float_type;
}
type fbop_commutative_rev_tgt = {
e : expr;
fbop : fbop;
x : value;
y : value;
fty : float_type;
}
type bop_distributive_over_selectinst = {
opcode : bop;
r : register;
s : register;
tprime : register;
t0 : register;
x : value;
y : value;
z : value;
c : value;
bopsz : size;
selty : value_type;
}
type bitcastptr = {
vprime : value;
bitcastinst : expr;
}
type bitcast_fpext = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type bitcast_fptosi = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type bitcast_fptoui = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type bitcast_fptrunc = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type bitcast_inttoptr = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type bitcast_ptrtoint = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type bitcast_sext = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type bitcast_sametype = {
src : value;
dst : value;
tty : value_type;
}
type bitcast_sitofp = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type bitcast_trunc = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type bitcast_uitofp = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type bitcast_zext = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type bop_distributive_over_selectinst2 = {
opcode : bop;
r : register;
s : register;
tprime : register;
t0 : register;
x : value;
y : value;
z : value;
c : value;
bopsz : size;
selty : value_type;
}
type fadd_commutative_tgt = {
z : register;
x : value;
y : value;
fty : float_type;
}
type fbop_distributive_over_selectinst = {
fopcode : fbop;
r : register;
s : register;
tprime : register;
t0 : register;
x : value;
y : value;
z : value;
c : value;
fbopty : float_type;
selty : value_type;
}
type fbop_distributive_over_selectinst2 = {
fopcode : fbop;
r : register;
s : register;
tprime : register;
t0 : register;
x : value;
y : value;
z : value;
c : value;
fbopty : float_type;
selty : value_type;
}
type fmul_commutative_tgt = {
z : register;
x : value;
y : value;
fty : float_type;
}
type fpext_fpext = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type fpext_bitcast = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type fptosi_bitcast = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type fptosi_fpext = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type fptoui_bitcast = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type fptoui_fpext = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type fptrunc_bitcast = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type fptrunc_fpext = {
src : value;
mid : value;
dst : value;
srcty : value_type;
midty : value_type;
dstty : value_type;
}
type gepzero = {
vprime : value;
gepinst : expr;
}
type gep_inbounds_remove = {
gepinst : expr;
}
type gep_inbounds_add = {
v : value;
ptr : value;
loadty : value_type;
al : size;
e : expr;
}
type intro_ghost = {
x : expr;
g : register;
}
type intro_ghost_src = {
x : expr;
g : register;
}
type intro_eq = {
x : expr;
}
type intro_eq_tgt = {
x : expr;
}
type inttoptr_load = {