-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbib.rkt
340 lines (299 loc) · 9.82 KB
/
bib.rkt
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
#lang racket/base
(require scriblib/autobib)
(provide (all-defined-out))
(define-cite ~cite citet generate-bibliography)
(define DVH (author-name "David" "Van Horn"))
(define STH (author-name "Sam" "Tobin-Hochstadt"))
(define PCN "Phúc C. Nguyễn")
(define OOPSLA12
(proceedings-location "ACM International Conference on
Object-Oriented Programming, Systems, Languages and
Applications (OOPSLA)"))
(define bib:monadic
(make-bib
#:title "Monadic Abstract Interpreters"
#:author (authors "Ilya Sergey"
"Dominique Devriese"
"Matthew Might"
"Jan Midtgaard"
"David Darais"
"Dave Clarke"
"Frank Piessens")
#:location (proceedings-location "ACM SIGPLAN Conference on
Programming Language Design and Implementation (PLDI)")
#:date "2013"))
(define bib:galois-transformers
(make-bib
#:title "Galois Transformers and Modular Abstract Interpreters"
#:author (authors "David Darais"
DVH)
#:location (proceedings-location "ACM International Conference on
Object-Oriented Programming, Systems, Languages and
Applications (OOPSLA)")
#:date "2015"))
(define bib:aam-concurrency
(make-bib
#:title "A Family of Abstract Interpretations for Static Analysis
of Concurrent Higher-Order Programs"
#:author (authors "Matthew Might"
DVH)
#:location (proceedings-location "International Static Analysis
Symposium (SAS)")
#:date "2011"))
(define bib:shivers-phd
(make-bib
#:title "Control-Flow Analysis of Higher-Order Languages"
#:author "Olin Shivers"
#:location (dissertation-location #:institution "Carnegie Mellon University"
#:degree "PhD")
#:date "1991"))
(define bib:componential
(make-bib
#:title "Componential set-based analysis"
#:author (authors "Cormac Flanagan"
"Matthias Felleisen")
#:location (journal-location "Componential set-based analysis"
#:volume "21"
#:number "2")
#:date "1999"))
(define bib:pdcfa-for-free
(make-bib
#:title "Pushdown Control-Flow Analysis for Free"
#:author (authors "Thomas Gilray"
"Steven Lyde"
"Michael D. Adams"
"Matthew Might"
DVH)
#:location (proceedings-location "ACM SIGPLAN-SIGACT Symposium on
Principles in Programming Languages (POPL)")
#:date "2016"))
(define bib:pdgc
(make-bib
#:title "Introspective Pushdown Analysis of Higher-Order Programs"
#:author (authors "Christopher Earl"
"Ilya Sergey"
"Matthew Might"
DVH)
#:location (proceedings-location "ACM SIGPLAN International Conference on Functional Programming (ICFP)")
#:date "2012"))
(define bib:pdgc-jfp
(make-bib
#:title "Pushdown flow analysis with abstract garbage collection"
#:author (authors "J. Ian Johnson"
"Ilya Sergey"
"Christopher Earl"
"Matthew Might"
DVH)
#:location (journal-location "Journal of Functional Programming"
#:volume "24"
#:number "2--3")
#:date "2014"))
(define bib:aac
(make-bib
#:title "Abstracting Abstract Control"
#:author (authors "J. Ian Johnson"
DVH)
#:location (proceedings-location "ACM Symposium on Dynamic
Languages (DLS)")
#:date "2014"))
(define bib:cfa2-callcc
(make-bib
#:title "Pushdown Flow Analysis of First-Class Control"
#:author (authors "Dimitris Vardoulakis"
"Olin Shivers")
#:location (proceedings-location "ACM SIGPLAN International
Conference on Functional Programming (ICFP)")
#:date "2011"))
(define bib:cfa2
(make-bib
#:title "CFA2: a Context-Free Approach to Control-Flow Analysis"
#:author (authors "Dimitris Vardoulakis"
"Olin Shivers")
#:location (journal-location "Logical Methods in Computer Science"
#:volume "7"
#:number "2-3")
#:date "2011"))
(define bib:pdcfa
(make-bib
#:title "Pushdown Control-Flow Analysis of Higher-Order Programs"
#:author (authors "Christopher Earl"
"Matthew Might"
DVH)
#:location (proceedings-location "Workshop on Scheme and Functional
Programming (SFP)")
#:date "2010"))
(define bib:oaam
(make-bib
#:title "Optimizing Abstract Abstract Machines"
#:author (authors "J. Ian Johnson"
"Nicholas Labich"
"Matthew Might"
DVH)
#:location (proceedings-location "ACM SIGPLAN International
Conference on Functional Programming (ICFP)")
#:date "2013"))
(define bib:aam-jfp
(make-bib
#:title "Systematic Abstraction of Abstract Machines"
#:author (authors DVH "Matthew Might")
#:location (journal-location "Journal of Functional Programming"
#:volume "22"
#:number "4-5")
#:date "2012"))
(define bib:hose
(make-bib
#:title "Higher-Order Symbolic Execution with Contracts"
#:author (authors STH DVH)
#:location OOPSLA12
#:date "2012"))
(define bib:anadroid
(make-bib
#:title "AnaDroid: Malware Analysis of Android with User-supplied Predicates"
#:author (authors "Shuying Liang"
"Matthew Might"
DVH)
#:location (proceedings-location "Workshop on Tools for Automatic Program Analysis")
#:date "2013"))
(define bib:js
(make-bib
#:title "Pushdown Abstractions of JavaScript"
#:author (authors DVH
"Matthew Might")
#:location (techrpt-location #:institution "arXiv"
#:number "109-4467")
#:date "2011"))
(define bib:jsai
(make-bib
#:title "JSAI: A Static Analysis Platform for JavaScript"
#:author (authors "Vineeth Kashyap"
"Kyle Dewey"
"Ethan A. Kuefner"
"John Wagner"
"Kevin Gibbons"
"John Sarracino"
"Ben Wiedermann"
"Ben Hardekopf")
#:location (proceedings-location "Symposium on Foundations of Software Engineering (FSE)")
#:date "2014"))
(define bib:entry-point-saturation
(make-bib
#:title "Sound and Precise Malware Analysis for Android via
Pushdown Reachability and Entry-Point Saturation"
#:author (authors "Shuying Liang"
"Andrew W. Keep"
"Matthew Might"
"Steven Lyde"
"Thomas Gilray"
"Petey Aldous"
DVH)
#:location (proceedings-location "Third ACM workshop on Security
and privacy in smartphones & mobile devices")
#:date "2013"))
(define bib:gradual-typing-first-class-classes
(make-bib
#:title "Gradual Typing for First-Class Classes"
#:author (authors "Asumu Takikawa"
"T. Stephen Strickland"
"Christos Dimoulas"
"Sam Tobin-Hochstadt"
"Matthias Felleisen")
#:location OOPSLA12
#:date "2012"))
(define bib:constraining-delim-control
(make-bib
#:title "Constraining Delimited Control with Contracts"
#:author (authors "Asumu Takikawa"
"T. Stephen Strickland"
"Sam Tobin-Hochstadt")
#:location (proceedings-location "European Symposium on Programming (ESOP)")
#:date "2013"))
(define bib:run-your-research
(make-bib
#:title "Run Your Research: On the Effectiveness of Lightweight Mechanization"
#:author (authors "Casey Klein"
"John Clements"
"Christos Dimoulas"
"Carl Eastlund"
"Matthias Felleisen"
"Matthew Flatt"
"Jay A. McCarthy"
"Jon Rafkind"
"Sam Tobin-Hochstadt"
"Robert Bruce Findler")
#:location (proceedings-location "The 39th Annual ACM SIGPLAN-SIGACT
Symposium on Principles of Programming Languages (POPL)")
#:date "2012"))
(define bib:pcf
(make-bib
#:title "LCF considered as a programming language"
#:author "Gordon Plotkin"
#:date "1977"
#:location (journal-location "Theoretical Computer Science"
#:volume "5"
#:pages (list "223" "255"))
#:url "http://homepages.inf.ed.ac.uk/gdp/publications/LCF.pdf"))
(define bib:redex
(make-bib
#:title "Semantics Engineering with PLT Redex"
#:author (authors "Matthias Felleisen"
"Robert Bruce Findler"
"Matthew Flatt")
#:date "2009" ; July
#:location (book-location #:publisher "MIT Press")))
(define bib:explicit
(make-bib
#:title "Explicit Substitutions"
#:author (authors "Martín Abadi"
"Luca Cardelli"
"Pierre-Louis Curien"
"Jean-Jacques Lévy")
#:location (journal-location "Journal of Functional Programming"
#:volume "1"
#:number "4"
#:pages (list "375" "416"))
#:date "1991" ; October
))
(define bib:muchnick-jones
(make-bib
#:title "Program Flow Analysis: Theory and Applications"
#:author (authors "Steven S. Muchnick"
"Neil D. Jones")
#:location (book-location #:publisher "Prentice Hall")
#:date "1981"))
(define bib:adi
(make-bib
#:title "Abstracting Definitional Interpreters (Functional Pearl)"
#:author (authors "David Darais"
PCN
"Nicholas Labich"
DVH)
#:location (proceedings-location "The ACM SIGPLAN International Conference on Functional Programming (ICFP)")
#:date "2017"))
(define bib:scv-stateful
(make-bib
#:title "Soft Contract Verification for Higher-order Stateful Programs"
#:author (authors PCN "Thomas Gilray" STH DVH)
#:location (proceedings-location "The 45th ACM SIGPLAN Symposium on Principles of Programming Languages (POPL)")
#:date "2018"))
(define bib:aam
(make-bib
#:title "Abstracting Abstract Machines"
#:author (authors DVH
"Matthew Might")
#:location (proceedings-location "The 15th ACM SIGPLAN International Conference on Functional Programming (ICFP)")
#:date "2010" ; September
;#:url "http://arxiv.org/abs/1007.4446"
))
(define bib:counterexamples
(make-bib
#:title "Relatively Complete Counterexamples for Higher-Order Programs"
#:author (authors PCN DVH)
#:location (proceedings-location "ACM SIGPLAN Conference on Programming Language Design and Implementation (PLDI)")
#:date "2015"))
(define bib:scv
(make-bib
#:title "Soft Contract Verification"
#:author (authors PCN STH DVH)
#:location (proceedings-location "The ACM SIGPLAN International Conference on Functional Programming (ICFP)")
;#:url "http://arxiv.org/abs/1307.6239"
#:date "2014"))