LLVM 23.0.0git
BreakFalseDeps.h
Go to the documentation of this file.
1//===----------------------------------------------------------------------===//
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 BreakFalseDepsPass class, used to
11/// identify and avoid false dependencies which cause unnecessary stalls.
12///
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CODEGEN_BREAKFALSEDEPS_H
16#define LLVM_CODEGEN_BREAKFALSEDEPS_H
17
20#include "llvm/IR/PassManager.h"
22
23namespace llvm {
24
25class BreakFalseDepsPass : public PassInfoMixin<BreakFalseDepsPass> {
26public:
29
33};
34
35} // namespace llvm
36
37#endif // LLVM_CODEGEN_BREAKFALSEDEPS_H
#define LLVM_ABI
Definition Compiler.h:213
This header defines various interfaces for pass management in LLVM.
MachineFunctionProperties getRequiredProperties() const
LLVM_ABI PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
Properties which a MachineFunction may have at a given point in time.
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
This is an optimization pass for GlobalISel generic memory operations.
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition PassManager.h:89