LLVM 19.0.0git
ArgumentPromotion.h
Go to the documentation of this file.
1//===- ArgumentPromotion.h - Promote by-reference arguments -----*- 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_IPO_ARGUMENTPROMOTION_H
10#define LLVM_TRANSFORMS_IPO_ARGUMENTPROMOTION_H
11
14#include "llvm/IR/PassManager.h"
15
16namespace llvm {
17
18/// Argument promotion pass.
19///
20/// This pass walks the functions in each SCC and for each one tries to
21/// transform it and all of its callers to replace indirect arguments with
22/// direct (by-value) arguments.
23class ArgumentPromotionPass : public PassInfoMixin<ArgumentPromotionPass> {
24 unsigned MaxElements;
25
26public:
27 ArgumentPromotionPass(unsigned MaxElements = 2u) : MaxElements(MaxElements) {}
28
31};
32
33} // end namespace llvm
34
35#endif // LLVM_TRANSFORMS_IPO_ARGUMENTPROMOTION_H
This header provides classes for managing passes over SCCs of the call graph.
Implements a lazy call graph analysis and related passes for the new pass manager.
This header defines various interfaces for pass management in LLVM.
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:348
Argument promotion pass.
ArgumentPromotionPass(unsigned MaxElements=2u)
PreservedAnalyses run(LazyCallGraph::SCC &C, CGSCCAnalysisManager &AM, LazyCallGraph &CG, CGSCCUpdateResult &UR)
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.
Definition: Analysis.h:109
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
Support structure for SCC passes to communicate updates the call graph back to the CGSCC pass manager...
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition: PassManager.h:91