You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the split types pass, non-interfering usages of datatypes become distinct datatypes. Code was added for #288 that performs an analysis of datatype size, and such code is often quite cheap to run (since the set of datatypes is so small) in practice.
As such, it would be beneficial to remove Tuples from the representations. This has a couple benefits:
Simplifies SSA and SSA2 representations and passes
Enables optimizations on de-facto tuples and other small datatypes that were previously only performed for bona fide tuple types.
Globalizes and names information about tuple structures, improving the speed of datatype analysis, as well as reading, writing and type-checking the IR.
The text was updated successfully, but these errors were encountered:
With the split types pass, non-interfering usages of datatypes become distinct datatypes. Code was added for #288 that performs an analysis of datatype size, and such code is often quite cheap to run (since the set of datatypes is so small) in practice.
As such, it would be beneficial to remove Tuples from the representations. This has a couple benefits:
The text was updated successfully, but these errors were encountered: