15#ifndef LLVM_TRANSFORMS_COROUTINES_COROSPLIT_H 
   16#define LLVM_TRANSFORMS_COROUTINES_COROSPLIT_H 
This header provides classes for managing passes over SCCs of the call graph.
 
This header defines various interfaces for pass management in LLVM.
 
Implements a lazy call graph analysis and related passes for the new pass manager.
 
An SCC of the call graph.
 
A lazily constructed view of the call graph of a module.
 
A set of analyses that are preserved following a run of a transformation pass.
 
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
 
@ C
The default llvm calling convention, compatible with C.
 
This is an optimization pass for GlobalISel generic memory operations.
 
AnalysisManager< LazyCallGraph::SCC, LazyCallGraph & > CGSCCAnalysisManager
The CGSCC analysis manager.
 
Support structure for SCC passes to communicate updates the call graph back to the CGSCC pass manager...
 
LLVM_ABI PreservedAnalyses run(LazyCallGraph::SCC &C, CGSCCAnalysisManager &AM, LazyCallGraph &CG, CGSCCUpdateResult &UR)
 
LLVM_ABI CoroSplitPass(bool OptimizeFrame=false)
 
BaseABITy CreateAndInitABI
 
std::function< std::unique_ptr< coro::BaseABI >(Function &, coro::Shape &)> BaseABITy
 
A CRTP mix-in to automatically provide informational APIs needed for passes.