-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathROOT
322 lines (286 loc) · 7.72 KB
/
ROOT
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
chapter "veriopt"
session Graph in Graph = "HOL-Library" +
description
"GraalVM Intermediate Representation encoding"
options [document = pdf, document_output = "output",
show_question_marks = false]
theories
JavaWords
JavaLong
Values
ValueThms
Stamp
IRNodes
IRNodeHierarchy
IRGraph
Comparison
Traversal
Class
document_files (in "../latex")
"root.tex"
"mathpartir.sty"
session Semantics in Semantics = Graph +
description
"Semantics of the GraalVM IR"
options [document = pdf, document_output = "output",
show_question_marks = false, quick_and_dirty]
sessions
"HOL-Eisbach"
Snippets
theories
Form
IRGraphFrames
IRStepObj
IRStepThms
IRTreeEval
IRTreeEvalThms
(*TermRewrites*)
TreeToGraph
TreeToGraphThms
document_files (in "../latex")
"root.tex"
"mathpartir.sty"
session Proofs in Proofs = Semantics +
description
"Supporting proof theories and definitions"
sessions
Snippets
theories
Bisimulation
Rewrites
StampEvalThms
Stuttering
session OptimizationDSL in "Optimizations/DSL" = Proofs +
description
"DSL for expressing optimizations"
options [document = pdf, document_output = "output",
show_question_marks = false]
sessions
Snippets
theories
Markup
Phase
Canonicalization
document_files (in "../../latex")
"root.tex"
"mathpartir.sty"
session Canonicalizations in "Optimizations/Canonicalizations" = OptimizationDSL +
description
"Canonicalization phase"
options [document = pdf, document_output = "output",
show_question_marks = false, quick_and_dirty]
theories
Common
AbsPhase
AddPhase
AndPhase
BinaryNode
ConditionalPhase
MulPhase
NewAnd
NotPhase
OrPhase
ShiftPhase
SignedDivPhase
SignedRemPhase
SubPhase
XorPhase
ProofStatus
document_files (in "../../latex")
"root.tex"
"mathpartir.sty"
session ConditionalElimination in "Optimizations/ConditionalElimination" = OptimizationDSL +
description
"(experimental) Conditional elimination phase"
options [quick_and_dirty,
document = pdf, document_output = "output",
show_question_marks = false,
document_variants="document:outline=/proof"]
theories
ConditionalElimination
CFG
document_files (in "../../latex")
"root.tex"
"mathpartir.sty"
(*
session Optimizations in Optimizations = OptimizationDSL +
description
"(deprecated) Graph transformation optimizations"
options [quick_and_dirty] (* Many sorries in CanonicalizationTreeProofs but all in experiment *)
theories
CanonicalizationTree
CanonicalizationTreeProofs
CanonicalizationSyntax
*)
(*session Tests in Tests = Semantics +
description
"Miscellaneous project testing"
theories
(*AssertTesting*)
(*ExecExamples*)
UnitTesting
(*Test: ArithmeticTesting*)
(*ConditionalEliminationTests*)*)
\<comment>\<open>Documentation sessions\<close>
session Snippets = "HOL-Library" +
description
"Additional commands to enable the generation of LaTeX snippets of theories"
options [document = pdf, document_output = "output",
show_question_marks = false]
theories
Snipping
document_files (in "./latex")
"root.tex"
"mathpartir.sty"
session Document in "Papers/Main" = Canonicalizations +
description
"Whole project document"
options [quick_and_dirty,
document = pdf, document_output = "output",
show_question_marks = false,
document_variants="document:outline=/proof"]
sessions
Graph
Semantics
Proofs
OptimizationDSL
Canonicalizations
ConditionalElimination
theories
ConditionalElimination.ConditionalElimination
document_theories
Graph.JavaWords
Graph.JavaLong
Graph.Values
Graph.ValueThms
Graph.Stamp
Graph.IRNodes
Graph.IRNodeHierarchy
Graph.IRGraph
Graph.Traversal
Graph.Comparison
Semantics.IRTreeEval
Semantics.IRTreeEvalThms
Semantics.TreeToGraph
Semantics.Form
Semantics.IRGraphFrames
Semantics.TreeToGraphThms
Semantics.IRStepObj
Semantics.IRStepThms
Proofs.Bisimulation
Proofs.Rewrites
Proofs.Stuttering
Proofs.StampEvalThms
OptimizationDSL.Markup
OptimizationDSL.Phase
OptimizationDSL.Canonicalization
Canonicalizations.Common
Canonicalizations.AbsPhase
Canonicalizations.AddPhase
Canonicalizations.AndPhase
Canonicalizations.BinaryNode
Canonicalizations.ConditionalPhase
Canonicalizations.MulPhase
Canonicalizations.NewAnd
Canonicalizations.NotPhase
Canonicalizations.OrPhase
Canonicalizations.ShiftPhase
Canonicalizations.SignedDivPhase
Canonicalizations.SignedRemPhase
Canonicalizations.SubPhase
Canonicalizations.XorPhase
ConditionalElimination.ConditionalElimination
document_files (in ".")
"root.tex"
document_files (in "../Stamps")
"lattice.tex"
document_files (in "../../latex")
"mathpartir.sty"
\<comment>\<open>Snippets for papers\<close>
session SemanticsPaper in "Papers/Semantics" = Semantics +
description
"Content for IR semantics description paper"
options [document = pdf, document_output = "output",
show_question_marks = false]
sessions
Proofs
theories
SemanticsSnippets
document_files (in "../../latex")
"root.tex"
"mathpartir.sty"
session StampLattice in "Papers/Stamps" = Graph +
description
"(experimental) Investigation of an alternative approach to representing stamps in Isabelle/HOL"
options [quick_and_dirty,
document = pdf, document_output = "output",
show_question_marks = false]
theories
Graph.StampLattice
document_theories
Graph.StampLattice
document_files (in ".")
"root.tex"
"lattice.tex"
document_files (in "../../latex")
"mathpartir.sty"
session TreePaperSnippets in "Papers/Tree" = Canonicalizations +
description
"Snippets of Isabelle theories used for the preparation of the future paper ``Verifying term graph optimizations using Isabelle/HOL''"
options [document = pdf, document_output = "output",
show_question_marks = false]
sessions
Snippets
theories
TreeSnippets
SlideSnippets
document_theories
Graph.JavaWords
Graph.JavaLong
Graph.Values
Graph.ValueThms
Graph.Stamp
Graph.IRNodes
Graph.IRNodeHierarchy
Graph.IRGraph
Semantics.IRTreeEval
Semantics.IRTreeEvalThms
Semantics.TreeToGraph
Semantics.Form
Semantics.IRGraphFrames
Semantics.TreeToGraphThms
Semantics.IRStepObj
Semantics.IRStepThms
Proofs.StampEvalThms
OptimizationDSL.Markup
OptimizationDSL.Phase
OptimizationDSL.Canonicalization
Canonicalizations.Common
(*Canonicalizations.AbsPhase*)
Canonicalizations.AddPhase
Canonicalizations.AndPhase
Canonicalizations.NewAnd
Canonicalizations.BinaryNode
Canonicalizations.ConditionalPhase
Canonicalizations.MulPhase
Canonicalizations.NotPhase
Canonicalizations.OrPhase
Canonicalizations.SubPhase
Canonicalizations.XorPhase
document_files (in ".")
"root.tex"
document_files (in "../../latex")
"mathpartir.sty"
session ValidationPaperSnippets in "Papers/Validation" = ConditionalElimination +
description
"Snippets of Isabelle theories used for the preparation of the future paper ``Validating Faithful Formalization of an Existing Compiler''"
options [document = pdf, document_output = "output",
show_question_marks = false, quick_and_dirty]
sessions
Snippets
theories
IRGraphSort
ValidationSnippets
document_files (in "../../latex")
"root.tex"
"mathpartir.sty"