Value numbering
Welcome back to compiler land. Today we’re going to talk about value numbering, which is like SSA, but more.
Static single assignment (SSA) gives names to values: every expression has a name, and each name corresponds to exactly one expression. It transforms programs like this:
where the variable x is assigned more than once in the program text, into programs like this:
where each assignment to x has been replaced with an assignment to a new fresh name.
It’s great because it makes clear the differences between the two x + 1 expressions. Though they textually look similar, they compute different values. The first computes 1 and the second computes 2. In this example, it is not possible to substitute in a variable and re-use the value of x + 1, because the xs are different.
But what if we see two “textually” identical instructions in SSA? That sounds much more promising than non-SSA because the transformation into SSA form has removed (much of) the statefulness of it all. When can we re-use the result?
Identifying instructions that are known at compile-time to always produce the same value at run-time is called value numbering.
Eliminating common subexpressions
To understand value numbering, let’s extend the above IR snippet with two more instructions, v3 and v4.
In this new snippet, v3 looks the same as v1: adding v0 and 1. Assuming our addition operation is some ideal mathematical addition, we can absolutely re-use v1; no need to compute the addition again. We can rewrite the IR to something like:
This is kind of similar to the destructive union-find representation that JavaScriptCore and a couple other compilers use, where the optimizer doesn’t eagerly re-write all uses but instead leaves a little breadcrumb Identity/Assign instruction1.
We could then run our copy propagation pass (“union-find cleanup”?) and get:
Great. But how does this happen? How does an optimizer identify reusable instruction candidates that are “textually identical”? Generally, there isno actual text in the IR.
One popular solution is to compute a hash of each instruction. Then any instructions with the same hash (that also compare equal, in case of collisions) are considered equivalent. This is called hash-consing.
When trying to figure all this out, I read through a couple of different implementations. I particularly like theMaxine VM implementation. For example, here is the valueNumber (hashing) and valueEqual functions for most binary operations, slightly modified for clarity:
The rest of the value numbering implementation assumes that if a valueNumber function returns 0, it does not wish to be considered for value numbering. Why might an instruction opt-out of value numbering?
Pure vs impure
An instruction might opt out of value numbering if it is not “pure”.
Some instructions are not pure. Purity is in the eye of the beholder, but in general it means that an instruction does not interact with the state of the outside world, except for trivial computation on its operands. (What does it mean to de-duplicate/cache/reuse printf?)
A load from an array object is also not a pure operation2. The load operation implicitly relies on the state of the memory. Also, even if the array was known-constant, in some runtime systems, the load might raise an exception. Changing the source location where an exception is raised is generally frowned upon. Languages such as Java often have requirements about where exceptions are raised codified in their specifications.
We’ll work only on pure operations for now, but we’ll come back to this later. We do often want to optimize impure operations as well!
We’ll start off with the simplest form of value numbering, which operates only on linear sequences of instructions, like basic blocks or traces.
Local value numbering
Let’s build a small implementation of local value numbering (LVN). We’ll start with straight-line code—no branches or anything tricky.
Most compiler optimizations on control-flow graphs (CFGs) iterate over the instructions “top to bottom”3 and it seems like we can do the same thing here too.
From what we’ve seen so far optimizing our made-up IR snippet, we can do something like this:
• initialize a map from instruction numbers to instruction pointers
• for each instruction i
• if i wants to participate in value numbering
• if i’s value number is already in the map, replace all pointers to i in the rest of the program with the corresponding value from the map
• otherwise, add i to the map
The find-and-replace, remember, is not a literal find-and-replace, but instead something like:
or
(if you have been following along with the toy optimizer series)
This several-line function (as long as you already have a hash map and a union-find available to you) is enough to build local value numbering! And real compilers are built this way, too.
If you don’t believe me, take a look at this slightly edited snippet fromMaxine’s value numbering implementation. It has all of the components we just talked about: iterating over instructions, map lookup, and some substitution.
This alone will get you pretty far. Code generators of all shapes tend to leave messy repeated computations all over their generated code and this will make short work of them.
Sometimes, though, your computations are spread across control flow—over multiple basic blocks. What do you do then?
Global value numbering
Computing value numbers for an entire function is called global value numbering (GVN) and it requires dealing with control flow (if, loops, etc). I don’t just mean that for an entire function, we run local value numbering block-by-block. Global value numbering implies that expressions can be de-duplicated and shared across blocks.
Let’s tackle control flow case by case.
First is the simple case from above: one block. In this case, we can go top to bottom with our value numbering and do alright.
The second case is also reasonable to handle: one block flowing into another. In this case, we can still go top to bottom. We just have to find a way to iterate over the blocks.
If we’re not going to share value maps between blocks, the order doesn’t matter. But since the point of global value numbering is to share values, we have to iterate them in topological order (reverse post order (RPO)). This ensures that predecessors get visited before successors. If you have bb0 -> bb1, we have to visit first bb0 and then bb1.
Because of how SSA works and how CFGs work, the second block can “look up” into the first block and use the values from it. To get global value numbering working, we have to copy bb0’s value map before we start processing bb1 so we can re-use the instructions.
Maybe something like:
Then the expressions can accrue across blocks. bb1 can re-use the already-computed Add v0, 1 from bb0 because it is still in the map.
…but this breaks as soon as you have control-flow splits. Consider the following shape graph:
We’re going to iterate over that graph in one of two orders: A B C or A C B. In either case, we’re going to be adding all this stuff into the value map from one block (say, B) that is not actually available to its sibling block (say, C).
When I say “not available”, I mean “would not have been computed before”. This is because we execute either A then B or A then C. There’s no world in which we execute B then C.
But alright, look at a third case where there is such a world: a control-flow join. In this diagram, we have two predecessor blocks B and C each flowing into D. In this diagram, B always flows into D and also C always flows into D. So the iterator order is fine, right?
Well, still no. We have the same sibling problem as before. B and C still can’t share value maps.
We also have a weird question when we enter D: where did we come from? If we came from B, we can re-use expressions from B. If we came from C, we can re-use expressions from C. But we cannot in general know which predecessor block we came from.
The only block we know for sure that we executed before D is A. This means we can re-use A’s value map in D because we can guarantee that all execution paths that enter D have previously gone through A.
This relationship is called a dominator relationship and this is the key to one style of global value numbering that we’re going to talk about in this post. A block can always use the value map from any other block that dominates it. For completeness’ sake, in the diamond diagram, A dominates each of B and C, too.
We can compute dominators a couple of ways4, but that’s a little bit out of scope for this blog post. If we assume that we have dominator information available in our CFG, we can use that for global value numbering. And that’s just what—you guessed it—Maxine VM does.
It iterates over all blocks in reverse post-order, doing local value numbering, threading through value maps from dominator blocks. In this case, their method dominator gets the immediate dominator: the “closest” dominator block of all the blocks that dominate the current one.
And that’s it! That’s the core of Maxine’s GVN implementation. I love how short it is. For not very much code, you can remove a lot of duplicate pure SSA instructions.
This does still work with loops, but with some caveats. From p7 of Briggs GVN:
The φ-functions require special treatment. Before the compiler can analyze the φ-functions in a block, it must previously have assigned value numbers to all of the inputs. This is not possible in all cases; specifically, any φ-function input whose value flows along a back edge (with respect to the dominator tree) cannot have a value number. If any of the parameters of a φ-function have not been assigned a value number, then the compiler cannot analyze the φ-function, and it must assign a unique, new value number to the result.
It also talks about eliminating useless phis, which is optional, but would the strengthen global value numbering pass: it makes more information transparent.
But what if we want to handle impure instructions?
State management and invalidation
Languages such as Java allow for reading fields from the this/self object within methods as if the field were a variable name. This makes code like the following common:
Each of these reference to regA and fetched_data is an implicit reference to this.regA or this.fetched_data, which is semantically a field load off an object. You can see it inthe bytecode (thanks, Matt Godbolt):
When straightforwardly building an SSA IR from the JVM bytecode for this method, you will end up with a bunch of IR that looks like this:
Pretty much the same as the bytecode. Even though no code in the middle could modify the field regA (which would require a re-load), we still have a duplicate load. Bummer.
I don’t want to re-hash this too much but it’s possible to fold Load and store forwarding into your GVN implementation by either:
• doing load-store forwarding as part of local value numbering and clearing memory information from the value map at the end of each block, or
• keeping track of effects across blocks
See, there’s nothing fundamentally stopping you from tracking the state of your heap at compile-time across blocks. You just have to do a little more bookkeeping. In our dominator-based GVN implementation, for example, you can:
1. track heap write effects for each block
2. at the start of each block B, union all of the “kill” sets for every block back to its immediate dominator
3. finally, remove the stuff that got killed from the dominator’s value map
Not so bad.
Maxine doesn’t do global memory tracking, but they do a limited form of load-store forwarding while building their HIR from bytecode: seeGraphBuilder which uses the MemoryMap to help track this stuff. At least they would not have the same duplicate LoadField instructions in the example above!
We’ve now looked at one kind of value numbering and one implementation of it. What else is out there?
Out in the world
Apparently, you can get better results by having a unified hash table (p9 of Briggs GVN) of expressions, not limiting the value map to dominator-available expressions. Not 100% on how this works yet.
They note:
Using a unified hash-table has one important algorithmic consequence. Replacements cannot be performed on-line because the table no longer reflects availability.
Which is the first time that it occurred to me that hash-based value numbering with dominators was an approximation of available expression analysis.
There’s also a totally different kind of value numbering called value partitioning (p12 of Briggs GVN). See also a nice blog post about this by Allen Wang from theCornell compiler course. I think this mostly replaces the hashing bit, and you still need some other thing for the available expressions bit.
Ben Titzer and Seth Goldstein have some good slides from CMU. Where they talk about the worklist dataflow approach. Apparently this is slower but gets you more available expressions than just looking to dominator blocks. I wonder how much it differs from dominator+unified hash table.
While Maxine uses hash table cloning to copy value maps from dominator blocks, there are also compilers such as Cranelift that usescoped hash maps to track this information more efficiently. (ThoughAmanieu notes that you may not need a scoped hash map and instead can tag values in your value map with the block they came from, ignoring non-dominating values with a quick check. The dominance check makes sense but I haven’t internalized how this affects the set of available expressions yet.)
You may be wondering if this kind of algorithm even helps at all in a dynamic language JIT context. Surely everything is too dynamic, right? Actually, no! The JIT hopes to eliminate a lot of method calls and dynamic behaviors, replacing them with guards, assumptions, and simpler operations. These strength reductions often leave behind a lot of repeated instructions. Just the other day, Kokubun filed avalue-numbering-like PR to clean up some of the waste.
ART has a recent blog post about speeding up GVN.
Implementations
• Maxine
• ART
• HHVM
Wrapping up; bits and bobbles
Go forth and give your values more numbers.
There’s been an ongoing discussion with Phil Zucker on SSI, GVN, acyclic egraphs, and scoped union-find. TODO summarize
Acyclic e-graphs
Commutativity; canonicalization
Seeding alternative representations into the GVN
Aegraphs and union-find during GVN cfallin.org/blog/2026/04/09/aegraph canonicalize
github.com/bytecodealliance/rfcs/blob/main/accepted/cranelift-egraph.mdgithub.com/bytecodealliance/wasmtime/issues/9049github.com/bytecodealliance/wasmtime/issues/4371
Partial redundancy elimination
1. Writing this post is roughly the time when I realized that the whole time I was wondering why Cinder did not use union-find for rewriting, it actually did! Optimizing instruction X = A + 0 by replacing with X = Assign A followed by copy propagation is equivalent to union-find. ↩
2. In some forms of SSA, like heap-array SSA or sea of nodes, it’s possible to more easily de-duplicate loads because the memory representation has been folded into (modeled in) the IR. ↩
3. The order is a little more complicated than that:reverse post-order (RPO). And there’s a paper called “A Simple Algorithm for Global Data Flow Analysis Problems” that I don’t yet have a PDF for that claims that RPO is optimal for solving dataflow problems. ↩
4. There’s the iterative dataflow way (described in the Cooper paper (PDF)), Lengauer-Tarjan (PDF), the Engineered Algorithm (PDF), hybrid/Semi-NCA approach (PDF), … ↩