Rename opt pipeline without LLVM prefix (#5828)

This prepares for future work that will reuse the opt pipeline view
outside of the LLVM ecosystem by renaming related components to remove
the LLVM prefix.

The pass dumper keep its LLVM prefix, as it is assumed this part is
likely to be customised for each compiler ecosystem.

The historical component name has been preserved in the component list
as an alias to keep old links working.
This commit is contained in:
J. Ryan Stinnett
2023-12-03 16:33:42 +00:00
committed by GitHub
parent c02f94233e
commit c3e1b04c31
30 changed files with 188 additions and 183 deletions

View File

@@ -10,7 +10,7 @@ const PANE_DATA_MAP = {
preprocessor: {name: 'Preprocessor', selector: 'view-pp'},
ast: {name: 'Ast Viewer', selector: 'view-ast'},
llvmir: {name: 'LLVM IR', selector: 'view-ir'},
pipeline: {name: 'Pipeline', selector: 'view-llvm-opt-pipeline'},
pipeline: {name: 'Pipeline', selector: 'view-opt-pipeline'},
device: {name: 'Device', selector: 'view-device'},
mir: {name: 'MIR', selector: 'view-rustmir'},
hir: {name: 'HIR', selector: 'view-rusthir'},