Skip to main content

Paper - Optimizing Database-Backed Applications with Query Synthesis

· 3 min read

Query-by-Synthesis (QBS) [@cheung2013optimizing] is a system developed to optimize database applications via static analysis. It is a very powerful system that, in the end, converts sections of code that would otherwise perform relational-query-like operations on the application server to a semantically equivalent SQL query that can be run on the DBMS.

Paper - A General Fine-Grained Reduction Theory for Effect Handlers

· 4 min read

A General Fine-Grained Reduction Theory for Effect Handlers (Sieczkowski et al. 2023) presents a theory of effect handlers that can be used for term rewriting systems, and provides a few different abstract machines for effect handlers.

A significant contribution of this paper I believe is that it provides a top down small-step semantics for effect handlers, which is a bit unusual.

Filip Sieczkowski, Mateusz Pyzik, and Dariusz Biernacki. “A General Fine-Grained Reduction Theory for Effect Handlers.” Proceedings of the ACM on Programming Languages 7 (ICFP): 511–540. 2023. Publisher: ACM New York, NY, USA.

Paper - Refocusing in Reduction Semantics

· 4 min read

Refocusing in Reduction Semantics (Danvy and Nielsen Nov. 2004) presents a way to go from a reduction semantics to an refocused pre-abstract machine, and eventually to an abstract machine. The paper is a good read after being introduced to reduction semantics and abstract machines, and has a few simple walkthroughs of how to actually apply the theory.

Olivier Danvy, and Lasse R. Nielsen. “Refocusing in Reduction Semantics.” BRICS Report Series 11 (26). Nov. 2004. doi:10.7146/brics.v11i26.21851.

Topic - Abstract Interpretation

· 4 min read

Abstract interpretation is a very common technique for analyzing programs. This is a quick primer on the topic.

The core idea of an abstract interpretation is to "run the program", but instead of typical program states/values/etc (sometimes referred to collectively as configurations), we use some replacement that means the execution is decidable (the program always terminates).

Paper - Galois Transformers and Modular Abstract Interpreters

· 8 min read

Galois Transformers and Modular Abstract Interpreters (Darais et al. 2015) provides a way to do abstract interpretation in general, without having to specify a particular language or analysis. This paper is fairly mathematically dense, so I'll do my best to break down what I understood from it. This paper is also a good starting point if you want to understand Dr. Germane's paper on Full Control-Flow Sensitivity.

David Darais, Matthew Might, and David Van Horn. “Galois Transformers and Modular Abstract Interpreters: Reusable Metatheory for Program Analysis.” ACM SIGPLAN Notices 50 (10): 552–571. 2015. Publisher: ACM New York, NY, USA.

Paper - Abstracting Abstract Machines

· One min read

The Abstracting Abstract Machines (Van Horn and Might 2010) paper is frequently cited due to its presentation of a methodological process of abstracting a small-step abstract machine for analysis.

David Van Horn, and Matthew Might. “Abstracting Abstract Machines.” In Proceedings of the 15th ACM SIGPLAN International Conference on Functional Programming, 51–62. 2010.

Topic - Control Flow Analysis

· 5 min read

This is a Blog for the BYU Static Analysis Lab

Dr. Kimball Germane is our advisor at BYU. https://kimball.germane.net/

He has a lot of experience with static analysis, and especially with making control flow analysis practical for real world use.

In this blog post we will introduce static analysis from a few different perspectives.

Click (Read More) below to read the rest of the post.