Thanks to visit codestin.com
Credit goes to llvm.org

LLVM 22.0.0git
CoroConditionalWrapper.h
Go to the documentation of this file.
1//===---- CoroConditionalWrapper.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#ifndef LLVM_TRANSFORMS_COROUTINES_COROCONDITIONALWRAPPER_H
10#define LLVM_TRANSFORMS_COROUTINES_COROCONDITIONALWRAPPER_H
11
12#include "llvm/IR/PassManager.h"
13
14namespace llvm {
15
16class Module;
17
18// Only runs passes in the contained pass manager if the module contains any
19// coroutine intrinsic declarations.
20struct CoroConditionalWrapper : PassInfoMixin<CoroConditionalWrapper> {
23 static bool isRequired() { return true; }
25 function_ref<StringRef(StringRef)> MapClassName2PassName);
26
27private:
29};
30} // end namespace llvm
31
32#endif // LLVM_TRANSFORMS_COROUTINES_COROCONDITIONALWRAPPER_H
This header defines various interfaces for pass management in LLVM.
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
An efficient, type-erasing, non-owning reference to a callable.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
This is an optimization pass for GlobalISel generic memory operations.
PassManager< Module > ModulePassManager
Convenience typedef for a pass manager over modules.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
Definition MIRParser.h:39
PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
void printPipeline(raw_ostream &OS, function_ref< StringRef(StringRef)> MapClassName2PassName)
CoroConditionalWrapper(ModulePassManager &&)
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition PassManager.h:70