-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpapers.rkt
753 lines (637 loc) · 26.1 KB
/
papers.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
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
#lang typed/racket
(provide confs jours workshop&others papers-list)
(require/typed "help.rkt"
[oxford ([Listof Xexpr] -> [Listof Xexpr])]
[delimit ((Listof Xexpr) (Listof Xexpr) (Listof Xexpr) (Listof Xexpr) -> (Listof Xexpr))])
(define-type Paper (U Conf Jour Work Diss Mast Pre))
(define-type Jour jour-paper)
(define-type Conf conf-paper)
(define-type Work work-paper)
(define-type Diss diss-paper)
(define-type Mast mast-paper)
(define-type Pre pre-paper)
(define-type Auth auth)
(define-type Venue venue)
(define-type Xexpr
(Rec x
(U String
Symbol
(List* Symbol (Listof (List Symbol String)) (Listof x))
(List* Symbol (Listof x)))))
(struct: pre-paper
([title : String]
[coauthors : [Listof Auth]]
[date : String]
[links : [Listof [List Symbol String]]]))
(struct: conf-paper
([title : Xexpr]
[coauthors : [Listof Auth]]
[conf : Venue]
[location : String]
[date : String]
[links : [Listof [List Symbol String]]]))
(struct: work-paper
([title : String]
[coauthors : [Listof Auth]]
[conf : Venue]
[location : String]
[date : String]
[links : [Listof [List Symbol String]]]))
(struct: jour-paper
([title : String]
[coauthors : [Listof Auth]]
[journal : Venue]
[vol : String]
[number : String]
[date : String]
[links : [Listof [List Symbol String]]]))
(struct: diss-paper
([title : String]
[school : String]
[date : String]
[links : [Listof [List Symbol String]]]))
(struct: mast-paper
([title : String]
[school : String]
[date : String]
[links : [Listof [List Symbol String]]]))
(struct: auth ([name : String]
[url : (U String #f)]))
(struct: venue ([name : String]
[url : String]))
(define jfp
(venue "Journal of Functional Programming"
"http://journals.cambridge.org/action/displayJournal?jid=JFP"))
(define li
(auth "Liyi Li"
"https://www.cs.umd.edu/~liyili2/"))
(define liu
(auth "Yiyun Liu" #f))
(define postol
(auth "Deena Postol" #f))
(define lampropoulos
(auth "Leonidas Lampropoulos"
"https://lemonidas.github.io/"))
(define vazou
(auth "Niki Vazou"
"https://nikivazou.github.io/"))
(define breitner
(auth "Joachim Breitner"
"https://www.cis.upenn.edu/~joachim/"))
(define kunkel
(auth "Rose Kunkel" #f))
(define hutton
(auth "Graham Hutton"
"http://www.cs.nott.ac.uk/~pszgmh/"))
(define tanter
(auth "Éric Tanter"
"https://pleiad.cl/people/etanter"))
(define hammer
(auth "Matthew A. Hammer"
"http://www.cs.umd.edu/~hammer/"))
(define dunfield
(auth "Jana Dunfield"
"https://research.cs.queensu.ca/home/jana/"))
(define headley
(auth "Kyle Headley"
"http://www.cs.umd.edu/~kheadley/"))
(define foster
(auth "Jeffrey S. Foster"
"http://www.cs.umd.edu/~jfoster/"))
(define hicks
(auth "Michael Hicks"
"http://www.cs.umd.edu/~mwh/"))
(define toronto
(auth "Neil Toronto"
"http://www.cs.umd.edu/~ntoronto/"))
(define mccarthy
(auth "Jay McCarthy"
"https://jeapostrophe.github.io/home/"))
(define glaze
(auth "Dionna Amalie Glaze"
"https://deeglaze.github.io/"))
(define might
(auth "Matthew Might"
"http://matt.might.net/"))
(define darais
(auth "David Darais"
"http://david.darais.com/"))
(define labichn
(auth "Nicholas Labich"
"https://www.cs.umd.edu/~labichn/"))
(define shuying
(auth "Shuying Liang"
"http://shuying.me/academic.html"))
(define sun
(auth "Weibin Sun"
"http://www.cs.utah.edu/~wbsun/"))
(define samth
(auth "Sam Tobin-Hochstadt"
"https://samth.github.io/"))
(define nguyen
(auth "Phúc C. Nguyễn"
"https://www.cs.umd.edu/~pcn/"))
(define moy
(auth "Cameron Moy"
"http://camoy.name/"))
(define sankha
(auth "Sankha Guria" "https://sankhs.com/"))
(define milod
(auth "Milod Kazerounian"
#f))
(define earl
(auth "Christopher Earl" #f))
(define sergey
(auth "Ilya Sergey"
"http://ilyasergey.net/"))
(define keep
(auth "Andrew W. Keep"
"http://andykeep.com/"))
(define adams
(auth "Michael D. Adams"
"https://michaeldadams.org/"))
(define lyde
(auth "Steven Lyde"
"https://faculty.utah.edu/u0286788-STEVEN_VAL_LYDE/research/index.hml"))
(define gilray
(auth "Thomas Gilray"
"https://thomas.gilray.org/"))
(define aldous
(auth "Petey Aldous"
"http://eng.utah.edu/~paldous/about.html"))
(define echang
(auth "Bor-Yuh Evan Chang"
"http://www.cs.colorado.edu/~bec/"))
(define chang
(auth "Stephen Chang"
"http://www.ccs.neu.edu/home/stchang/"))
(define matthias
(auth "Matthias Felleisen"
"http://www.ccs.neu.edu/home/matthias/"))
(define smaragdakis
(auth "Yannis Smaragdakis"
"http://smaragd.org/"))
(define mairson
(auth "Harry G. Mairson"
"http://www.cs.brandeis.edu/~mairson/"))
(define skalka
(auth "Christian Skalka"
"http://www.cs.uvm.edu/~skalka/"))
(define smith
(auth "Scott F. Smith"
"http://www.cs.jhu.edu/~smith/"))
(: format-venue : Venue -> Xexpr)
(define (format-venue v)
(match v
[(venue name url)
`(a ((href ,url)) ,name)]))
(: format-auth : Auth -> Xexpr)
(define (format-auth a)
(match a
[(auth name url)
(if (false? url)
name
`(a ((href ,url)) ,name))]))
(: format-link : (List Symbol String) -> Xexpr)
(define (format-link l)
(match l
[(list name url)
`(a ((href ,url))
,(symbol->string name))]))
(: format-links : (Listof (List Symbol String)) -> (Listof Xexpr))
(define (format-links l)
(delimit (map format-link l)
'("[" nbsp)
'(nbsp "|" nbsp)
'(nbsp "]")))
(: with : (Listof Auth) -> (Listof Xexpr))
(define (with coauthors)
(if (empty? coauthors)
empty
`("With " ,@(oxford (map format-auth coauthors)) ". ")))
(: format-paper : Paper -> Xexpr)
(define (format-paper p)
(match p
[(pre-paper title coauthors date links)
`(p (span ((class "paper-title")) ,title) ". "
,@(with coauthors)
(br)
"Preprint, " ,date
"."
(br)
,@(format-links links))]
[(work-paper title coauthors conf location date links)
(format-paper (conf-paper title coauthors conf location date links))]
[(conf-paper title coauthors conf location date links)
`(p (span ((class "paper-title")) ,title) ". "
,@(with coauthors)
(br)
(span ((class "italic")) ,(format-venue conf))
", "
,location
", "
,date
"."
(br)
,@(format-links links)
)]
[(jour-paper title coauthors journal vol number date links)
`(p (span ((class "paper-title")) ,title) ". "
,@(with coauthors)
(br)
(span ((class "italic")) ,(format-venue journal))
", "
,vol
"("
,number
"), "
,date
"."
(br)
,@(format-links links))]
; #;`(span ((class "italic")) ,journal)]
[(mast-paper title school date links)
`(p (span ((class "paper-title")) ,title) ". "
(br)
"MS thesis, "
,school
", "
,date
"."
(br)
,@(format-links links))]
[(diss-paper title school date links)
`(p (span ((class "paper-title")) ,title) ". "
(br)
"PhD dissertation, "
,school
", "
,date
"."
(br)
,@(format-links links))]))
(define papers
(list
(conf-paper "A Formal Model of Checked C"
(list li liu postol lampropoulos hicks)
(venue "IEEE Computer Security Foundations Symposium"
"https://www.ieee-security.org/TC/CSF2022/")
"Haifa, Israel"
"August 2022"
'((IEEE "https://www.computer.org/csdl/proceedings-article/csf/2022/841700a049/1F9Ql2amtQ4")
(arXiv "https://arxiv.org/abs/2201.13394")))
(conf-paper "RbSyn: Type- and Effect-Guided Program Synthesis"
(list sankha foster)
(venue "The ACM SIGPLAN Conference on Programming Language Design and Implementation (PLDI'21)"
"https://conf.researchr.org/home/pldi-2021")
"Online"
"June 2021"
'((ACM "https://dl.acm.org/doi/abs/10.1145/3453483.3454048")
(arXiv "https://arxiv.org/abs/2102.13183")))
(conf-paper "Corpse Reviver: Sound and Efficient Gradual Typing via Contract Verification"
(list moy nguyen samth)
(venue "The 48th ACM SIGPLAN Symposium on Principles of Programming Languages (POPL'21)"
"https://popl21.sigplan.org/")
"Online"
"January 2021"
'((ACM "https://dl.acm.org/doi/10.1145/3434334")
(arXiv "https://arxiv.org/abs/2007.12630")))
(jour-paper "Constructive Galois Connections"
(list darais)
jfp
"29"
"11"
"July 2019"
'((CUP "https://doi.org/10.1017/S0956796819000066")
(arXiv "https://arxiv.org/abs/1807.08711")))
(conf-paper "Size-Change Termination as a Contract"
(list nguyen gilray samth)
(venue "The ACM SIGPLAN Conference on Programming Language Design and Implementation (PLDI'19)"
"https://conf.researchr.org/home/pldi-2019")
"Phoenix, Arizona"
"June 2019"
'((ACM "https://dl.acm.org/doi/10.1145/3314221.3314643")
(arXiv "https://arxiv.org/abs/1808.02101")))
(conf-paper "Type-Level Computations for Ruby Libraries"
(list milod sankha vazou foster)
(venue "The ACM SIGPLAN Conference on Programming Language Design and Implementation (PLDI'19)"
"https://conf.researchr.org/home/pldi-2019")
"Phoenix, Arizona"
"June 2019"
'((ACM "https://dl.acm.org/doi/10.1145/3314221.3314630")
(arXiv "https://arxiv.org/pdf/1904.03521/")))
(conf-paper '(span "Gradual Liquid Type Inference " (b "(Distinguished Paper)"))
(list vazou tanter)
(venue "The ACM SIGPLAN Conference on Object-Oriented Programming Systems, Languages, and Applications (OOPSLA'18)"
"https://conf.researchr.org/track/splash-2018/splash-2018-OOPSLA")
"Boston, USA"
"October 2018"
'((ACM "https://dl.acm.org/citation.cfm?id=3276502") (arXiv "https://arxiv.org/abs/1807.02132")))
(conf-paper "Theorem Proving for All: Equational Reasoning in Liquid Haskell"
(list vazou breitner kunkel hutton)
(venue "The ACM SIGPLAN International Symposium on Haskell (Haskell'18)"
"https://www.haskell.org/haskell-symposium/2018/")
"St. Louis, Missouri"
"September 2018"
'((ACM "https://dl.acm.org/citation.cfm?id=3242756") (arXiv "https://arxiv.org/abs/1806.03541")))
(conf-paper "Soft Contract Verification for Higher-order Stateful Programs"
(list nguyen gilray samth)
(venue "The 45th ACM SIGPLAN Symposium on Principles of Programming Languages (POPL'18)"
"https://popl18.sigplan.org/")
"Los Angeles, USA"
"January 2018"
'((ACM "https://dl.acm.org/citation.cfm?doid=3177123.3158139")
(arXiv "https://arxiv.org/abs/1711.03620")))
(conf-paper "Abstracting Definitional Interpreters"
(list darais nguyen labichn)
(venue "The ACM SIGPLAN International Conference on Functional Programming (ICFP'17)"
"http://icfp17.sigplan.org/")
"Oxford, UK"
"September 2017"
'((ACM "https://dl.acm.org/citation.cfm?id=3136534.3110256")
(arXiv "https://arxiv.org/abs/1707.04755")))
(jour-paper "Higher-order symbolic execution for contract verification and refutation"
(list nguyen samth)
jfp
"27"
"3"
"January 2017"
'((CUP "https://doi.org/10.1017/S0956796816000216")
(arXiv "http://arxiv.org/abs/1507.04817")))
(conf-paper "A Vision for Online Verification-Validation"
(list hammer echang)
(venue "The 15th International Conference on Generative Programming: Concepts & Experience (GPCE'16)"
"http://conf.researchr.org/home/gpce-2016")
"Amsterdam, Netherlands"
"November 2016"
'((ACM "https://dl.acm.org/citation.cfm?doid=2993236.2993255")
(arxiv "https://arxiv.org/abs/1608.06012")))
(conf-paper "Constructive Galois Connections"
(list darais)
(venue "The ACM SIGPLAN International Conference on Functional Programming (ICFP'16)"
"http://conf.researchr.org/home/icfp-2016")
"Nara, Japan"
"September 2016"
'((ACM "https://dl.acm.org/citation.cfm?id=2951934")
(arXiv "http://arxiv.org/abs/1511.06965")))
(conf-paper "Pushdown Control-Flow Analysis for Free"
(list gilray lyde adams might)
(venue "The 43rd ACM SIGPLAN-SIGACT Symposium on Principles in Programming Languages (POPL'16)"
"http://conf.researchr.org/home/POPL-2016")
"St. Petersburg, Florida"
"January 2016"
'((ACM "https://dl.acm.org/citation.cfm?id=2837631")
(arXiv "http://arxiv.org/abs/1507.03137")))
(conf-paper "Tutorial: An Introduction to Redex with Abstracting
Abstract Machines"
(list)
(venue "Tutorials at The 43rd ACM SIGPLAN-SIGACT Symposium on Principles in Programming Languages (POPL'16)"
"http://conf.researchr.org/home/POPL-2016")
"St. Petersburg, Florida"
"January 2016"
'((HTML "https://dvanhorn.github.io/redex-aam-tutorial/")
(PDF "https://www.cs.umd.edu/~dvanhorn/redex-aam.pdf")))
(conf-paper "Incremental Computation with Names"
(list hammer dunfield headley labichn foster hicks)
(venue "The ACM SIGPLAN Conference on Object-Oriented Programming, Systems, Languages, and Applications (OOPSLA'15)"
"http://2015.splashcon.org/")
"Pittsburgh, Pennsylvania"
"October 2015"
'((ACM "https://dl.acm.org/citation.cfm?id=2814305")
(arXiv "http://arxiv.org/abs/1503.07792")))
(conf-paper "Galois Transformers and Modular Abstract Interpreters"
(list darais might)
(venue "The ACM SIGPLAN Conference on Object-Oriented Programming, Systems, Languages, and Applications (OOPSLA'15)"
"http://2015.splashcon.org/")
"Pittsburgh, Pennsylvania"
"October 2015"
'((ACM "https://dl.acm.org/citation.cfm?id=2814308")
(arXiv "http://arxiv.org/abs/1411.3962")))
(conf-paper "Relatively Complete Counterexamples for Higher-Order Programs"
(list nguyen)
(venue "The 36th ACM SIGPLAN Conference on Programming Language Design and Implementation (PLDI'15)"
"http://conf.researchr.org/home/pldi2015")
"Portland, Oregon"
"June, 2015"
'((ACM "https://dl.acm.org/citation.cfm?id=2737971")
(arXiv "http://arxiv.org/abs/1411.3967")))
(conf-paper "Running Probabilistic Programs Backwards"
(list toronto mccarthy)
(venue "The European Symposium on Programming (ESOP'15)"
"http://www.etaps.org/index.php/2015/esop")
"London, United Kingdom"
"April, 2015"
'((Springer "http://link.springer.com/chapter/10.1007%2F978-3-662-46669-8_3")
(arXiv "http://arxiv.org/abs/1412.4053")))
(conf-paper "Abstracting Abstract Control"
(list glaze)
(venue "The 10th ACM Symposium on Dynamic Languages (DLS'14)"
"http://www.dynamic-languages-symposium.org/dls-14/")
"Portland, Oregon"
"October 2014"
'((ACM "http://dl.acm.org/citation.cfm?id=2661098")
(arXiv "http://arxiv.org/abs/1305.3163")))
(conf-paper "Pruning, Pushdown Exception-Flow Analysis"
(list shuying sun might keep)
(venue "The 14th IEEE International Conference on Software Code Analysis and Manipulation"
"http://www.ieee-scam.org/2014/")
"Victoria, British Columbia"
"September 2014"
'((IEEE "http://ieeexplore.ieee.org/xpl/articleDetails.jsp?reload=true&arnumber=6975660")
(arXiv "http://arxiv.org/abs/1409.3108")))
(conf-paper "Soft Contract Verification"
(list nguyen samth)
(venue "The ACM SIGPLAN International Conference on Functional Programming (ICFP'14)"
"http://icfpconference.org/icfp2014/")
"Gothenburg, Sweden"
"September 2014"
'((ACM "http://dl.acm.org/citation.cfm?id=2628156")
(arXiv "http://arxiv.org/abs/1307.6239")))
(jour-paper "Pushdown flow analysis with abstract garbage collection"
(list glaze sergey earl might)
jfp
"24"
"2-3"
"May 2014"
'((CUP "http://journals.cambridge.org/abstract_S0956796814000100")
(arXiv "http://arxiv.org/abs/1406.5106")))
(conf-paper "Optimizing Abstract Abstract Machines"
(list glaze labichn might)
(venue "The ACM SIGPLAN International Conference on Functional Programming (ICFP'13)"
"http://icfpconference.org/icfp2013/")
"Boston, Massachusetts"
"September 2013"
'((ACM "http://dl.acm.org/citation.cfm?id=2500604")
(arXiv "http://arxiv.org/abs/1211.3722")))
(work-paper "Sound and Precise Malware Analysis for Android via Pushdown Reachability and Entry-Point Saturation"
(list shuying keep might lyde gilray aldous)
(venue "Proceedings of the Third ACM workshop on Security and privacy in smartphones & mobile devices"
"http://www.spsm-workshop.org/2013/")
"Berlin, Germany"
"November 2013"
'((ACM "http://dl.acm.org/citation.cfm?doid=2516760.2516769")
(arXiv "http://arxiv.org/abs/1311.4201")))
(work-paper "AnaDroid: Malware Analysis of Android with User-supplied Predicates"
(list shuying might)
(venue "Workshop on Tools for Automatic Program Analysis"
"http://pl.cs.colorado.edu/tapas2013/")
"Seattle, Washington"
"June 2013"
'((arXiv "http://arxiv.org/abs/1311.4198")))
(work-paper "Concrete Semantics for Pushdown Analysis: The Essence of Summarization"
(list glaze)
(venue "Workshop on Higher-Order Program Analysis"
"http://hopa.cs.rhul.ac.uk/")
"New Orleans, Louisiana"
"June 2013"
'((arXiv "http://arxiv.org/abs/1305.3163")))
(work-paper "From Principles to Practice with Class in the First Year"
(list samth)
(venue "International Workshop on Trends in Functional Programming in Education"
"http://wwwhome.ewi.utwente.nl/~holzenspiespkf/TFPIE2013.html")
"Provo, Utah"
"May 2013"
'((EPCTCS "http://arxiv.org/html/1312.2216v1")
(arXiv "http://arxiv.org/abs/1306.4713")))
(conf-paper "Higher-Order Symbolic Execution via Contracts"
(list samth)
(venue "The ACM SIGPLAN Conference on Object-Oriented Programming, Systems, Languages, and Applications (OOPSLA'12)"
"http://splashcon.org/2012/cfp/378")
"Tuscon, Arizona"
"October 2012"
'((ACM "http://dl.acm.org/citation.cfm?id=2384655")
(arXiv "http://arxiv.org/abs/1103.1362")))
(conf-paper "Introspective Pushdown Analysis of Higher-Order Programs"
(list earl sergey might)
(venue "The 17th ACM SIGPLAN International Conference on Functional Programming (ICFP'12)"
"http://icfpconference.org/icfp2012/")
"Copenhagen, Denmark"
"September 2012"
'((ACM "http://dl.acm.org/citation.cfm?id=2364576")
(arXiv "http://arxiv.org/abs/1207.1813")))
;; Best of ICFP 2010.
;; http://journals.cambridge.org/action/displayFulltext?type=1&pdftype=1&fid=8669091&jid=JFP&volumeId=22&issueId=4-5&aid=8669090
(jour-paper "Systematic Abstraction of Abstract Machines"
(list might)
jfp
"22"
"4-5"
"September 2012"
'((CUP "http://journals.cambridge.org/action/displayAbstract?fromPage=online&aid=8669075")
(arXiv "http://arxiv.org/abs/1107.3539")))
(jour-paper "Abstracting Abstract Machines"
(list might)
(venue "Communications of the ACM, Research Highlights"
"http://cacm.acm.org/")
"54"
"9"
"September 2011"
'((ACM "http://doi.acm.org/10.1145/1995376.1995400")
(arXiv "http://arxiv.org/abs/1105.1743")))
(conf-paper "A Family of Abstract Interpretations for Static Analysis of Concurrent Higher-Order Programs"
(list might)
(venue "The 18th International Static Analysis Symposium (SAS 2011)"
"http://sas2011.cs.technion.ac.il/")
"Venice, Italy"
"September 2011"
'((Springer "http://www.springerlink.com/content/j272827h5r088h78/")
(arXiv "http://arxiv.org/abs/1103.5167")))
(work-paper "Semantic Solutions to Program Analysis Problems"
(list samth)
(venue "FIT Session, The ACM SIGPLAN 2011 Conference on Programming Language Design and Implementation (PLDI'11)"
"http://pldi11.cs.utah.edu/")
"San Jose, California"
"June 2011"
'((arXiv "http://arxiv.org/abs/1105.0106")))
(conf-paper "Abstracting Abstract Machines"
(list might)
(venue "The 15th ACM SIGPLAN International Conference on Functional Programming (ICFP'10)"
"http://www.icfpconference.org/icfp2010/")
"Baltimore, Maryland"
"September 2010"
'((ACM "http://doi.acm.org/10.1145/1863543.1863553")
(arXiv "http://arxiv.org/abs/1007.4446")))
(work-paper "Pushdown Control-Flow Analysis of Higher-Order Programs"
(list earl might)
(venue "The 2010 Workshop on Scheme and Functional Programming (SFP'10)"
"http://www.iro.umontreal.ca/~sfp2010/")
"Montréal, Québec"
"August 2010"
'((arXiv "http://arxiv.org/abs/1007.4268")))
(conf-paper "Evaluating Call-By-Need on the Control Stack"
(list chang matthias)
(venue "Symposium on Trends in Functional Programming (TFP 2010)"
"http://www.cs.ou.edu/tfp2010/")
"Norman, Oklahoma"
"May 2010"
'((Springer "http://www.springerlink.com/content/4156483l58237m45/")
(arXiv "http://arxiv.org/abs/1009.3174")))
(conf-paper "Resolving and Exploiting the k-CFA Paradox"
(list might smaragdakis)
(venue "The ACM SIGPLAN 2010 Conference on Programming Language Design and Implementation (PLDI'10)"
"http://cs.stanford.edu/pldi10/")
"Toronto, Canada"
"June 2010"
'((ACM "http://dl.acm.org/citation.cfm?doid=1806596.1806631")
(arXiv "http://arxiv.org/abs/1311.4231")))
(diss-paper "The Complexity of Flow Analysis in Higher-Order Languages"
"Brandeis University"
"August 2009"
'((UMI "http://gradworks.umi.com/33/69/3369445.html")
(arXiv "http://arxiv.org/abs/1311.4733")))
#;
(jour-paper "Subcubic Control Flow Analysis Algorithms"
(list midtgaard)
(venue "Higher-Order and Symbolic Execution (to appear)"
"http://www.springer.com/computer/theoretical+computer+science/journal/10990"))
(conf-paper "Deciding kCFA is complete for EXPTIME"
(list mairson)
(venue "The 13th ACM SIGPLAN International Conference on Functional Programming (ICFP'08)"
"http://www.icfpconference.org/icfp2008/")
"Victoria, British Columbia, Canada"
"September 2008"
'((ACM "http://doi.acm.org/10.1145/1411204.1411243")
(arXiv "http://arxiv.org/abs/1311.5810")))
;; A few principles of macro design
(conf-paper "Flow Analysis, Linearity, and PTIME"
(list mairson)
(venue "The 15th International Static Analysis Symposium (SAS 2008)"
"http://users.dsic.upv.es/~sas2008/")
"Valencia, Spain"
"July 2008"
'((Springer "http://dx.doi.org/10.1007/978-3-540-69166-2_17")
(arXiv "http://arxiv.org/abs/1311.5825")))
(jour-paper "Types and Trace Effects of Higher Order Programs"
(list skalka smith)
jfp
"18"
"2"
"March 2008"
'((CUP "http://dx.doi.org/10.1017/S0956796807006466")))
(conf-paper "Relating Complexity and Precision in Control Flow Analysis"
(list mairson)
(venue "The Twelth ACM SIGPLAN International Conference on Functional Programming (ICFP'07)"
"http://www.icfpconference.org/archived/icfp2007/proglang.informatik.uni-freiburg.de/ICFP2007/index.html")
"Freiburg, Germany"
"October 2007"
'((ACM "http://doi.acm.org/10.1145/1291151.1291166")))
(mast-paper "Algorithmic Trace Effect Analysis"
"University of Vermont"
"May 2006"
'((UVM "http://library.uvm.edu/dissertations/index.php?search_type=item&bid=1563807")))
(work-paper "A Type and Effect System for Flexible Abstract Interpretation of Java"
(list skalka smith)
(venue "The ACM Workshop on Abstract Interpretations of Object-Oriented Programs"
"http://web.archive.org/web/20041227060438/www.polytechnique.fr/vmcai05/Aiool.html")
"Paris, France"
"January 2005"
'((Elsevier "http://www.sciencedirect.com/science/article/pii/S1571066105002628")))
))
(define workshop&others
(map format-paper (filter work-paper? papers)))
(define confs
(map format-paper (filter conf-paper? papers)))
(define jours
(map format-paper (filter jour-paper? papers)))
(define papers-list
(map format-paper papers))