LLVM 19.0.0git
RewriteStatepointsForGC.h
Go to the documentation of this file.
1//===- RewriteStatepointsForGC.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// This file provides interface to "Rewrite Statepoints for GC" pass.
10//
11// This passe rewrites call/invoke instructions so as to make potential
12// relocations performed by the garbage collector explicit in the IR.
13//
14//===----------------------------------------------------------------------===//
15
16#ifndef LLVM_TRANSFORMS_SCALAR_REWRITESTATEPOINTSFORGC_H
17#define LLVM_TRANSFORMS_SCALAR_REWRITESTATEPOINTSFORGC_H
18
19#include "llvm/IR/PassManager.h"
20
21namespace llvm {
22
23class DominatorTree;
24class Function;
25class Module;
26class TargetTransformInfo;
27class TargetLibraryInfo;
28
29struct RewriteStatepointsForGC : public PassInfoMixin<RewriteStatepointsForGC> {
31
33 const TargetLibraryInfo &);
34};
35
36} // namespace llvm
37
38#endif // LLVM_TRANSFORMS_SCALAR_REWRITESTATEPOINTSFORGC_H
#define F(x, y, z)
Definition: MD5.cpp:55
Machine Check Debug Module
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:321
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition: Dominators.h:162
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:109
Provides information about what library functions are available for the current target.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition: PassManager.h:74
bool runOnFunction(Function &F, DominatorTree &, TargetTransformInfo &, const TargetLibraryInfo &)
PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)