LLVM 20.0.0git
PassBuilder.h
Go to the documentation of this file.
1/*===-- llvm-c/Transform/PassBuilder.h - PassBuilder for LLVM C ---*- C -*-===*\
2|* *|
3|* Part of the LLVM Project, under the Apache License v2.0 with LLVM *|
4|* Exceptions. *|
5|* See https://llvm.org/LICENSE.txt for license information. *|
6|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *|
7|* *|
8|*===----------------------------------------------------------------------===*|
9|* *|
10|* This header contains the LLVM-C interface into the new pass manager *|
11|* *|
12\*===----------------------------------------------------------------------===*/
13
14#ifndef LLVM_C_TRANSFORMS_PASSBUILDER_H
15#define LLVM_C_TRANSFORMS_PASSBUILDER_H
16
17#include "llvm-c/Error.h"
19#include "llvm-c/Types.h"
20
21/**
22 * @defgroup LLVMCCoreNewPM New Pass Manager
23 * @ingroup LLVMCCore
24 *
25 * @{
26 */
27
29
30/**
31 * A set of options passed which are attached to the Pass Manager upon run.
32 *
33 * This corresponds to an llvm::LLVMPassBuilderOptions instance
34 *
35 * The details for how the different properties of this structure are used can
36 * be found in the source for LLVMRunPasses
37 */
38typedef struct LLVMOpaquePassBuilderOptions *LLVMPassBuilderOptionsRef;
39
40/**
41 * Construct and run a set of passes over a module
42 *
43 * This function takes a string with the passes that should be used. The format
44 * of this string is the same as opt's -passes argument for the new pass
45 * manager. Individual passes may be specified, separated by commas. Full
46 * pipelines may also be invoked using `default<O3>` and friends. See opt for
47 * full reference of the Passes format.
48 */
52
53/**
54 * Construct and run a set of passes over a function.
55 *
56 * This function behaves the same as LLVMRunPasses, but operates on a single
57 * function instead of an entire module.
58 */
62
63/**
64 * Create a new set of options for a PassBuilder
65 *
66 * Ownership of the returned instance is given to the client, and they are
67 * responsible for it. The client should call LLVMDisposePassBuilderOptions
68 * to free the pass builder options.
69 */
71
72/**
73 * Toggle adding the VerifierPass for the PassBuilder, ensuring all functions
74 * inside the module is valid.
75 */
78
79/**
80 * Toggle debug logging when running the PassBuilder
81 */
83 LLVMBool DebugLogging);
84
85/**
86 * Specify a custom alias analysis pipeline for the PassBuilder to be used
87 * instead of the default one. The string argument is not copied; the caller
88 * is responsible for ensuring it outlives the PassBuilderOptions instance.
89 */
91 const char *AAPipeline);
92
95
97 LLVMPassBuilderOptionsRef Options, LLVMBool LoopVectorization);
98
100 LLVMPassBuilderOptionsRef Options, LLVMBool SLPVectorization);
101
103 LLVMBool LoopUnrolling);
104
106 LLVMPassBuilderOptionsRef Options, LLVMBool ForgetAllSCEVInLoopUnroll);
107
109 unsigned LicmMssaOptCap);
110
112 LLVMPassBuilderOptionsRef Options, unsigned LicmMssaNoAccForPromotionCap);
113
115 LLVMPassBuilderOptionsRef Options, LLVMBool CallGraphProfile);
116
118 LLVMBool MergeFunctions);
119
121 LLVMPassBuilderOptionsRef Options, int Threshold);
122
123/**
124 * Dispose of a heap-allocated PassBuilderOptions instance
125 */
127
128/**
129 * @}
130 */
131
133
134#endif // LLVM_C_TRANSFORMS_PASSBUILDER_H
#define LLVM_C_EXTERN_C_BEGIN
Definition: ExternC.h:35
#define LLVM_C_EXTERN_C_END
Definition: ExternC.h:36
static LVOptions Options
Definition: LVOptions.cpp:25
#define F(x, y, z)
Definition: MD5.cpp:55
Function const char * Passes
bool VerifyEach
void LLVMPassBuilderOptionsSetMergeFunctions(LLVMPassBuilderOptionsRef Options, LLVMBool MergeFunctions)
void LLVMPassBuilderOptionsSetDebugLogging(LLVMPassBuilderOptionsRef Options, LLVMBool DebugLogging)
Toggle debug logging when running the PassBuilder.
LLVMPassBuilderOptionsRef LLVMCreatePassBuilderOptions(void)
Create a new set of options for a PassBuilder.
void LLVMPassBuilderOptionsSetVerifyEach(LLVMPassBuilderOptionsRef Options, LLVMBool VerifyEach)
Toggle adding the VerifierPass for the PassBuilder, ensuring all functions inside the module is valid...
void LLVMPassBuilderOptionsSetLicmMssaOptCap(LLVMPassBuilderOptionsRef Options, unsigned LicmMssaOptCap)
void LLVMDisposePassBuilderOptions(LLVMPassBuilderOptionsRef Options)
Dispose of a heap-allocated PassBuilderOptions instance.
void LLVMPassBuilderOptionsSetLicmMssaNoAccForPromotionCap(LLVMPassBuilderOptionsRef Options, unsigned LicmMssaNoAccForPromotionCap)
void LLVMPassBuilderOptionsSetInlinerThreshold(LLVMPassBuilderOptionsRef Options, int Threshold)
void LLVMPassBuilderOptionsSetSLPVectorization(LLVMPassBuilderOptionsRef Options, LLVMBool SLPVectorization)
void LLVMPassBuilderOptionsSetCallGraphProfile(LLVMPassBuilderOptionsRef Options, LLVMBool CallGraphProfile)
void LLVMPassBuilderOptionsSetLoopVectorization(LLVMPassBuilderOptionsRef Options, LLVMBool LoopVectorization)
void LLVMPassBuilderOptionsSetLoopUnrolling(LLVMPassBuilderOptionsRef Options, LLVMBool LoopUnrolling)
void LLVMPassBuilderOptionsSetAAPipeline(LLVMPassBuilderOptionsRef Options, const char *AAPipeline)
Specify a custom alias analysis pipeline for the PassBuilder to be used instead of the default one.
typedefLLVM_C_EXTERN_C_BEGIN struct LLVMOpaquePassBuilderOptions * LLVMPassBuilderOptionsRef
A set of options passed which are attached to the Pass Manager upon run.
Definition: PassBuilder.h:38
void LLVMPassBuilderOptionsSetForgetAllSCEVInLoopUnroll(LLVMPassBuilderOptionsRef Options, LLVMBool ForgetAllSCEVInLoopUnroll)
void LLVMPassBuilderOptionsSetLoopInterleaving(LLVMPassBuilderOptionsRef Options, LLVMBool LoopInterleaving)
LLVMErrorRef LLVMRunPasses(LLVMModuleRef M, const char *Passes, LLVMTargetMachineRef TM, LLVMPassBuilderOptionsRef Options)
Construct and run a set of passes over a module.
LLVMErrorRef LLVMRunPassesOnFunction(LLVMValueRef F, const char *Passes, LLVMTargetMachineRef TM, LLVMPassBuilderOptionsRef Options)
Construct and run a set of passes over a function.
struct LLVMOpaqueError * LLVMErrorRef
Opaque reference to an error instance.
Definition: Error.h:33
struct LLVMOpaqueValue * LLVMValueRef
Represents an individual value in LLVM IR.
Definition: Types.h:75
int LLVMBool
Definition: Types.h:28
struct LLVMOpaqueModule * LLVMModuleRef
The top-level container for all other LLVM Intermediate Representation (IR) objects.
Definition: Types.h:61
struct LLVMOpaqueTargetMachine * LLVMTargetMachineRef
Definition: TargetMachine.h:35