Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Outlining] LLVM Suffix Tree (#5821) | Ashley Nelson | 2023-07-18 | 1 | -0/+179 |
This PR adds LLVM's suffix tree data structure to Binaryen. This suffix tree is implemented using Ukkonen's algorithm for linear-time suffix tree construction, and is intended for fast substring queries. Note: All of the .h and .cpp files included are from LLVM. These files were copied directly instead of imported into our existing LLVM integration (in third_party/) to avoid bumping the commit hash and avoid the potential for complications with upstream changes. |