//===- InstructionNamer.cpp - Give anonymous instructions names -----------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This is a little utility pass that gives instructions names, this is mostly // useful when diffing the effect of an optimization because deleting an // unnamed instruction can change all other instruction numbering, making the // diff very noisy. // //===----------------------------------------------------------------------===// #include "llvm/Transforms/Utils/InstructionNamer.h" #include "llvm/IR/Function.h" #include "llvm/IR/PassManager.h" #include "llvm/IR/Type.h" usingnamespacellvm; namespace { void nameInstructions(Function &F) { … } } // namespace PreservedAnalyses InstructionNamerPass::run(Function &F, FunctionAnalysisManager &FAM) { … }