Description
This pass implements polymorphic equality.
Implementation
poly-equal.sig poly-equal.funDetails and Notes
For each datatype, tycon, and vector type, it builds and equality function and translates calls to MLton_equal into calls to that function.
Also generates calls to IntInf_equal and Word_equal.
For tuples, it does the equality test inline; i.e., it does not create a separate equality function for each tuple type.
All equality functions are created only if necesary, i.e., if equality is actually used at a type.
Optimizations:
-
for datatypes that are enumerations, do not build a case dispatch, just use MLton_eq, as the backend will represent these as ints
-
deep equality always does an MLton_eq test first