Merged
Conversation
Add golden budget tests for unsafeFromBuiltinData compilation in both SumsOfProducts and BuiltinCasing modes. Covers single-constructor, pair, mixed-arity, and three-constructor types with PIR, UPLC, and evaluation golden files for GHC 9.6 and 9.12.
Replace runtime list-indexing via PlutusTx.List.!! with a compile-time equalsInteger/ifThenElse chain for the SumsOfProducts caseInteger fallback. This fixes a 3-5x cost regression in unsafeFromBuiltinData for multi-constructor types (reported by Hydra team). Also fixes a latent bug in compileHaskellList that silently dropped list elements when GHC used (:)-chain representation instead of build/foldr form.
Updated Marlowe golden TSV files to reflect improved budgets from the caseInteger SoP fix. CPU: -9..12%, Memory: -16..20%.
Contributor
zliu41
approved these changes
Apr 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Patch release 1.56.0.1 — backports the caseInteger SoP fallback fix from #7693.
PlutusTx.List.!!with a compile-timeequalsInteger/ifThenElsechain for the SumsOfProductscaseIntegerfallback, fixing a 3-5x cost regression inunsafeFromBuiltinDatafor multi-constructor types.compileHaskellListthat silently dropped list elements when GHC used(:)-chain representation.Budget improvements (Marlowe validators)
Related