1 //===--- llvm/CodeGen/SelectOptimize.h ---------------------------*- C++ -*-==// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 /// 9 /// \file 10 /// This file contains the declaration of the SelectOptimizePass class, 11 /// its corresponding pass name is `select-optimize`. 12 /// 13 //===----------------------------------------------------------------------===// 14 15 #ifndef LLVM_CODEGEN_SELECTOPTIMIZE_H 16 #define LLVM_CODEGEN_SELECTOPTIMIZE_H 17 18 #include "llvm/IR/PassManager.h" 19 20 namespace llvm { 21 22 class TargetMachine; 23 24 class SelectOptimizePass : public PassInfoMixin<SelectOptimizePass> { 25 const TargetMachine *TM; 26 27 public: SelectOptimizePass(const TargetMachine * TM)28 explicit SelectOptimizePass(const TargetMachine *TM) : TM(TM) {} 29 PreservedAnalyses run(Function &F, FunctionAnalysisManager &FAM); 30 }; 31 32 } // namespace llvm 33 34 #endif // LLVM_CODEGEN_SELECTOPTIMIZE_H 35