diff options
author | Tobias Stadler <mail@stadler-tobias.de> | 2025-06-18 14:25:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-18 14:25:41 +0100 |
commit | 1f34d68c4f086e7ea6ef9a529f9606476b38bbbb (patch) | |
tree | 8a85748b5c119883fc7fed4ccf324d3c5ca0849b /llvm/docs/CommandGuide | |
parent | c4d99704e22097703c57ee67baea96fdabfd68ab (diff) | |
download | llvm-1f34d68c4f086e7ea6ef9a529f9606476b38bbbb.zip llvm-1f34d68c4f086e7ea6ef9a529f9606476b38bbbb.tar.gz llvm-1f34d68c4f086e7ea6ef9a529f9606476b38bbbb.tar.bz2 |
[Remarks] Remove yaml-strtab format (#144527)
Background: The yaml-strtab format looks just like the yaml format,
except that the values in the key/value pairs of the remarks are
deduplicated and replaced by indices into a string table (see removed
test cases for examples). The motivation behind this format was to
reduce size of the remarks files. However, it was quickly superseded by
the bitstream format.
Therefore, remove the yaml-strtab format, as it doesn't have a good
usecase anymore:
- It isn't particularly efficient
- It isn't human-readable
- It isn't straightforward to parse in external tools that can't use the
remarks library. We don't even support it in opt-viewer.
llvm-remarkutil is also missing options to parse/convert yaml-strtab, so
the chance that anyone is actually using this format is low.
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-opt-report.rst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/docs/CommandGuide/llvm-opt-report.rst b/llvm/docs/CommandGuide/llvm-opt-report.rst index 4a666a4..ba10ba3 100644 --- a/llvm/docs/CommandGuide/llvm-opt-report.rst +++ b/llvm/docs/CommandGuide/llvm-opt-report.rst @@ -94,7 +94,6 @@ be sent to standard output. The Argument is one of the following: - yaml - - yaml-strtab - bitstream .. option:: --no-demangle |