English

Corpse Reviver: Sound and Efficient Gradual Typing via Contract Verification

Programming Languages 2020-10-13 v2

Abstract

Gradually-typed programming languages permit the incremental addition of static types to untyped programs. To remain sound, languages insert run-time checks at the boundaries between typed and untyped code. Unfortunately, performance studies have shown that the overhead of these checks can be disastrously high, calling into question the viability of sound gradual typing. In this paper, we show that by building on existing work on soft contract verification, we can reduce or eliminate this overhead. Our key insight is that while untyped code cannot be trusted by a gradual type system, there is no need to consider only the worst case when optimizing a gradually-typed program. Instead, we statically analyze the untyped portions of a gradually-typed program to prove that almost all of the dynamic checks implied by gradual type boundaries cannot fail, and can be eliminated at compile time. Our analysis is modular, and can be applied to any portion of a program. We evaluate this approach on a dozen existing gradually-typed programs previously shown to have prohibitive performance overhead---with a median overhead of 3.5×3.5\times and up to 73.6×73.6\times in the worst case---and eliminate all overhead in most cases, suffering only 1.6×1.6\times overhead in the worst case.

Keywords

Cite

@article{arxiv.2007.12630,
  title  = {Corpse Reviver: Sound and Efficient Gradual Typing via Contract Verification},
  author = {Cameron Moy and Phúc C. Nguyen and Sam Tobin-Hochstadt and David Van Horn},
  journal= {arXiv preprint arXiv:2007.12630},
  year   = {2020}
}

Comments

To appear in POPL 2021

R2 v1 2026-06-23T17:23:02.195Z