Can LLMs Compress (and Decompress)? Evaluating Code Understanding and Execution via Invertibility
Nickil Maveli, Antonio Vergari, Shay B. Cohen
TL;DR
RTCE introduces a lossless round-trip benchmark for code understanding in Code-LLMs by enforcing a bijective encoding/decoding pipeline with the strict constraint $dec(enc(x)) = x$. It constructs a deterministic dataset using four classic compression algorithms (LZW, Arithmetic Encoding, Run-Length Encoding, Huffman) across four data families, totaling 250 inputs and 1000 evaluation instances. The authors evaluate zero-shot, supervised trace-based fine-tuning, and self-reflection, finding modest improvements but no model achieving full round-trip consistency, indicating gaps in internal coherence for bidirectional code reasoning. They argue that round-trip bijection exposes deeper mechanistic understanding than forward-only benchmarks and release the code and data for community use.
Abstract
LLMs demonstrate strong performance on code benchmarks, yet round-trip code execution reveals limitations in their ability to maintain consistent reasoning across forward and backward execution. We present RoundTripCodeEval (RTCE), a comprehensive benchmark consisting of four distinct code execution reasoning tasks designed to rigorously test round-trip consistency. RTCE provides an execution-free, exact-match evaluation of bijection fidelity, assessing whether models preserve a consistent one-to-one mapping between encoding and decoding operations across various algorithms and directions. We systematically evaluate state-of-the-art Code-LLMs using zero-shot prompting, supervised fine-tuning on execution traces, and self-reflection mechanisms. Each yields modest improvements, but none closes the gap, indicating that current LLMs struggle with true round-trip consistency, which demonstrates that they lack the internal coherence required for trustworthy code reasoning. RTCE surfaces several new and previously unmeasured insights that are not captured by existing I/O-prediction, execution-reasoning, or round-trip natural-language benchmarks. We will release the code and the dataset upon acceptance.
