|
|
|||
File indexing completed on 2026-05-10 08:44:42
0001 //===- LoopTermFold.h - Loop Term Fold Pass ---------------------*- C++ -*-===// 0002 // 0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 0004 // See https://llvm.org/LICENSE.txt for license information. 0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 0006 // 0007 //===----------------------------------------------------------------------===// 0008 // 0009 //===----------------------------------------------------------------------===// 0010 0011 #ifndef LLVM_TRANSFORMS_SCALAR_LOOPTERMFOLD_H 0012 #define LLVM_TRANSFORMS_SCALAR_LOOPTERMFOLD_H 0013 0014 #include "llvm/Analysis/LoopAnalysisManager.h" 0015 #include "llvm/IR/PassManager.h" 0016 0017 namespace llvm { 0018 0019 class Loop; 0020 class LPMUpdater; 0021 0022 class LoopTermFoldPass : public PassInfoMixin<LoopTermFoldPass> { 0023 public: 0024 PreservedAnalyses run(Loop &L, LoopAnalysisManager &AM, 0025 LoopStandardAnalysisResults &AR, LPMUpdater &U); 0026 }; 0027 0028 } // end namespace llvm 0029 0030 #endif // LLVM_TRANSFORMS_SCALAR_LOOPTERMFOLD_H
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|