LLVM 23.0.0git
CodeMetrics.h
Go to the documentation of this file.
1//===- CodeMetrics.h - Code cost measurements -------------------*- 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 implements various weight measurements for code, helping
10// the Inliner and other passes decide whether to duplicate its contents.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_ANALYSIS_CODEMETRICS_H
15#define LLVM_ANALYSIS_CODEMETRICS_H
16
20
21namespace llvm {
22class AssumptionCache;
23class BasicBlock;
24class Loop;
25class Function;
26template <class T> class SmallPtrSetImpl;
28class Value;
29
31
32/// Utility to calculate the size and a few similar metrics for a set
33/// of basic blocks.
35 /// True if this function contains a call to setjmp or other functions
36 /// with attribute "returns twice" without having the attribute itself.
37 bool exposesReturnsTwice = false;
38
39 /// True if this function calls itself.
40 bool isRecursive = false;
41
42 /// True if this function cannot be duplicated.
43 ///
44 /// True if this function contains one or more indirect branches, or it contains
45 /// one or more 'noduplicate' instructions.
46 bool notDuplicatable = false;
47
48 /// True if this function calls alloca (in the C sense).
49 bool usesDynamicAlloca = false;
50
51 /// The kind of convergence specified in this function.
53
54 /// Code size cost of the analyzed blocks.
56
57 /// Keeps track of basic block code size estimates. Indexed by block number.
59
60 /// Keep track of the number of calls to 'big' functions.
61 unsigned NumCalls = 0;
62
63 /// The number of calls to internal functions with a single caller.
64 ///
65 /// These are likely targets for future inlining, likely exposed by
66 /// interleaved devirtualization.
67 unsigned NumInlineCandidates = 0;
68
69 /// How many instructions produce vector values.
70 ///
71 /// The inliner is more aggressive with inlining vector kernels.
72 unsigned NumVectorInsts = 0;
73
74 /// How many 'ret' instructions the blocks contain.
75 unsigned NumRets = 0;
76
77 /// Add information about a block to the current state.
78 LLVM_ABI void
80 const SmallPtrSetImpl<const Value *> &EphValues,
81 bool PrepareForLTO = false, const Loop *L = nullptr);
82
83 /// Collect a loop's ephemeral values (those used only by an assume
84 /// or similar intrinsics in the loop).
85 LLVM_ABI static void
88
89 /// Collect a functions's ephemeral values (those used only by an
90 /// assume or similar intrinsics in the function).
91 LLVM_ABI static void
94};
95
96}
97
98#endif
#define LLVM_ABI
Definition Compiler.h:213
This file defines an InstructionCost class that is used when calculating the cost of an instruction,...
This file defines the SmallVector class.
A cache of @llvm.assume calls within a function.
LLVM Basic Block Representation.
Definition BasicBlock.h:62
Represents a single loop in the control flow graph.
Definition LoopInfo.h:40
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
LLVM Value Representation.
Definition Value.h:75
This is an optimization pass for GlobalISel generic memory operations.
ConvergenceKind
Definition CodeMetrics.h:30
TargetTransformInfo TTI
Utility to calculate the size and a few similar metrics for a set of basic blocks.
Definition CodeMetrics.h:34
bool usesDynamicAlloca
True if this function calls alloca (in the C sense).
Definition CodeMetrics.h:49
ConvergenceKind Convergence
The kind of convergence specified in this function.
Definition CodeMetrics.h:52
bool notDuplicatable
True if this function cannot be duplicated.
Definition CodeMetrics.h:46
SmallVector< InstructionCost, 0 > NumBBInsts
Keeps track of basic block code size estimates. Indexed by block number.
Definition CodeMetrics.h:58
unsigned NumInlineCandidates
The number of calls to internal functions with a single caller.
Definition CodeMetrics.h:67
bool isRecursive
True if this function calls itself.
Definition CodeMetrics.h:40
static LLVM_ABI void collectEphemeralValues(const Loop *L, AssumptionCache *AC, SmallPtrSetImpl< const Value * > &EphValues)
Collect a loop's ephemeral values (those used only by an assume or similar intrinsics in the loop).
unsigned NumRets
How many 'ret' instructions the blocks contain.
Definition CodeMetrics.h:75
bool exposesReturnsTwice
True if this function contains a call to setjmp or other functions with attribute "returns twice" wit...
Definition CodeMetrics.h:37
LLVM_ABI void analyzeBasicBlock(const BasicBlock *BB, const TargetTransformInfo &TTI, const SmallPtrSetImpl< const Value * > &EphValues, bool PrepareForLTO=false, const Loop *L=nullptr)
Add information about a block to the current state.
unsigned NumCalls
Keep track of the number of calls to 'big' functions.
Definition CodeMetrics.h:61
unsigned NumVectorInsts
How many instructions produce vector values.
Definition CodeMetrics.h:72
InstructionCost NumInsts
Code size cost of the analyzed blocks.
Definition CodeMetrics.h:55