summaryrefslogtreecommitdiff
path: root/src/support/suffix_tree_node.h
Commit message (Collapse)AuthorAgeFilesLines
* [Outlining] LLVM Suffix Tree (#5821)Ashley Nelson2023-07-181-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.