Perf: Implement a new algorithm for pattern matching compilation to reduce code size
-
Review changes -
-
Download -
Patches
-
Plain diff
Motivation and Context
Closes #1924 (closed)
This MR implements the algorithm from the paper "Compiling Pattern Matching to Good Decision Trees" for pattern matching compiler.
This algorithm performs better than the previous one in the cases when there are nested pattens in a match expression coupled with wildcards in between.
In some cases we can see more than 80% reduction in code size (compared to the old algorthim).
This algorithm simpler to implement and this also removes the pattern simplification pass (pattern_simpl.ml) which was needed by the old algorithm for compressing the matches. The new algorithm generates smaller automaton/match so there is not need for simplification/compression.
Description
examples | 0.67.1 (bytes) | new algo (bytes) | diff (%) |
---|---|---|---|
edge_case_T.mligo | 3920 | 468 | -88.06 |
bug_report.mligo | 2801 | 468 | -83.29 |
permit-cameligo | 4967 | 4955 | -0.24 |
dao-cameligo | 6481 | 6479 | -0.03 |
permit-jsligo | 5010 | 5010 | 0 |
randomness-cameligo | 12542 | 12542 | 0 |
randomness-jsligo | 23695 | 23695 | 0 |
fa2 (single-asset) | 1550 | 1550 | 0 |
fa2 (multi-asset) | 2054 | 2054 | 0 |
fa2 (nft) | 2447 | 2447 | 0 |
dao-jsligo | 6323 | 6323 | 0 |
predictive-market-jsligo | 7769 | 7769 | 0 |
predictive-market-cameligo | 7804 | 7804 | 0 |
advisor-jsligo | 308 | 308 | 0 |
advisor-cameligo | 308 | 308 | 0 |
multisig-jsligo | 1302 | 1302 | 0 |
multisig-cameligo | 1274 | 1274 | 0 |
shifumi-jsligo | 9090 | 9090 | 0 |
shifumi-cameligo | 5353 | 5353 | 0 |
NFT-factory-jsligo | 3491 | 3491 | 0 |
NFT-factory-cameligo | 3497 | 3497 | 0 |
checker-ligo | 18467 | 18467 | 0 |
tzsafe | 6854 | 6854 | 0 |
batcher | 23135 | 23149 | +0.06 |
Component
-
compiler -
website -
webide -
vscode-plugin -
debugger
Types of changes
-
Bug fix (non-breaking change which fixes an issue) -
New feature (non-breaking change which adds functionality) -
Breaking change (fix or feature that would cause existing functionality to not work as expected) -
Performance improvement (non-breaking change that improves performance) -
None (change with no changelog)
Changelog
We implement a new algorithm for the pattern-matching compiler which reduces the size of generated code in some cases.
In some cases we observed upto 80% reduction in generated code.
Example
type t = A | B
type p = (t * t * t * t)
let main (p : p) (_ : int) : operation list * int =
[], (match p with
A,A,A,A -> 1
| B,B,B,B -> 1
| _,A,A,A -> 2
| _,B,B,B -> 2
| _,_,A,A -> 3
| _,_,B,B -> 3
| _,_,_,A -> 4
| _,_,_,B -> 4)
Before
$ ligo.67 info measure-contract x.mligo
3920 bytes
After
$ ligo info measure-contract x.mligo
468 bytes
Checklist:
-
Changes follow the existing coding style (use dune @fmt
to check). -
Tests for the changes have been added (for bug fixes / feature). -
Documentation has been updated. -
Changelog description has been added (if appropriate). -
Start titles under ## Changelog
section with #### (if appropriate). -
There is no image or uploaded file in changelog -
Examples in changed behaviour have been added to the changelog (for breaking change / feature).
Merge request reports
- version 40d207ffa3
- version 39e800da80
- version 380b9b0e71
- version 377a3f3d6e
- version 36d4a0dfa0
- version 3565de08c3
- version 34a7d5d765
- version 33e616f06b
- version 326b625a75
- version 31f078601b
- version 306a3d90e4
- version 290a852730
- version 28ca405527
- version 27b7d775a4
- version 26d1df24b9
- version 25e2e19e79
- version 24d6648c87
- version 234bace7c0
- version 22e430323d
- version 211fedaea2
- version 2019041fc1
- version 19ca13ecb9
- version 180e4821e4
- version 1765def35e
- version 162624b38a
- version 151d62660f
- version 14c739d434
- version 13d3ecd545
- version 1215913e95
- version 119d26a07d
- version 10b3123411
- version 9c257ca1b
- version 8d99fb3bc
- version 7b0cd9819
- version 6581e8f0e
- version 512915070
- version 481ee24bf
- version 39e18749b
- version 26796cae2
- version 18c213576
- dev (base)
- latest versionba5f17ab44 commits,
- version 40d207ffa342 commits,
- version 39e800da8041 commits,
- version 380b9b0e7139 commits,
- version 377a3f3d6e38 commits,
- version 36d4a0dfa037 commits,
- version 3565de08c335 commits,
- version 34a7d5d76533 commits,
- version 33e616f06b32 commits,
- version 326b625a7531 commits,
- version 31f078601b30 commits,
- version 306a3d90e429 commits,
- version 290a85273028 commits,
- version 28ca40552727 commits,
- version 27b7d775a426 commits,
- version 26d1df24b925 commits,
- version 25e2e19e7923 commits,
- version 24d6648c8722 commits,
- version 234bace7c022 commits,
- version 22e430323d22 commits,
- version 211fedaea221 commits,
- version 2019041fc120 commits,
- version 19ca13ecb919 commits,
- version 180e4821e417 commits,
- version 1765def35e16 commits,
- version 162624b38a16 commits,
- version 151d62660f15 commits,
- version 14c739d43414 commits,
- version 13d3ecd54513 commits,
- version 1215913e9512 commits,
- version 119d26a07d11 commits,
- version 10b312341110 commits,
- version 9c257ca1b9 commits,
- version 8d99fb3bc8 commits,
- version 7b0cd98197 commits,
- version 6581e8f0e6 commits,
- version 5129150705 commits,
- version 481ee24bf4 commits,
- version 39e18749b3 commits,
- version 26796cae22 commits,
- version 18c2135761 commit,
- Side-by-side
- Inline