English

Anvil: A General-Purpose Timing-Safe Hardware Description Language

Hardware Architecture 2025-10-28 v2 Programming Languages

Abstract

Expressing hardware designs using hardware description languages (HDLs) routinely involves using stateless signals whose values change according to their underlying registers. Unintended behaviours can arise when the stored values in these underlying registers are mutated while their dependent signals are expected to remain constant across multiple cycles. Such timing hazards are common because, with a few exceptions, existing HDLs lack abstractions for values that remain unchanged over multiple clock cycles, delegating this responsibility to hardware designers. Designers must then carefully decide whether a value should remain unchanged, sometimes even across hardware modules. This paper proposes Anvil, an HDL which statically prevents timing hazards with a novel type system. Anvil is the only HDL we know of that guarantees timing safety, i.e., absence of timing hazards, without sacrificing expressiveness for cycle-level timing control or dynamic timing behaviours. Unlike many HLS languages that abstract away the differences between registers and signals, Anvil's type system exposes them fully while capturing the timing relationships between register value mutations and signal usages to enforce timing safety. This, in turn, enables safe composition of communicating hardware modules by static enforcement of timing contracts that encode timing constraints on shared signals. Such timing contracts can be specified parametric on abstract time points that can vary during run-time, allowing the type system to statically express dynamic timing behaviour. We have implemented Anvil and successfully used it to implement key timing-sensitive modules, comparing them against open-source SystemVerilog counterparts to demonstrate the practicality and expressiveness of the generated hardware.

Cite

@article{arxiv.2503.19447,
  title  = {Anvil: A General-Purpose Timing-Safe Hardware Description Language},
  author = {Jason Zhijingcheng Yu and Aditya Ranjan Jha and Umang Mathur and Trevor E. Carlson and Prateek Saxena},
  journal= {arXiv preprint arXiv:2503.19447},
  year   = {2025}
}

Comments

Accepted to appear in ASPLOS 2026; 26 pages, 10 figures

R2 v1 2026-06-28T22:33:31.222Z