Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1 | //===- CodeMetrics.h - Code cost measurements -------------------*- C++ -*-===// |
| 2 | // |
Andrew Walbran | 16937d0 | 2019-10-22 13:54:20 +0100 | [diff] [blame] | 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 |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 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 | |
| 17 | #include "llvm/ADT/DenseMap.h" |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 18 | |
| 19 | namespace llvm { |
| 20 | class AssumptionCache; |
| 21 | class BasicBlock; |
| 22 | class Loop; |
| 23 | class Function; |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame^] | 24 | template <class T> class SmallPtrSetImpl; |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 25 | class TargetTransformInfo; |
| 26 | class Value; |
| 27 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 28 | /// Utility to calculate the size and a few similar metrics for a set |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 29 | /// of basic blocks. |
| 30 | struct CodeMetrics { |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 31 | /// True if this function contains a call to setjmp or other functions |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 32 | /// with attribute "returns twice" without having the attribute itself. |
| 33 | bool exposesReturnsTwice = false; |
| 34 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 35 | /// True if this function calls itself. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 36 | bool isRecursive = false; |
| 37 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 38 | /// True if this function cannot be duplicated. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 39 | /// |
| 40 | /// True if this function contains one or more indirect branches, or it contains |
| 41 | /// one or more 'noduplicate' instructions. |
| 42 | bool notDuplicatable = false; |
| 43 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 44 | /// True if this function contains a call to a convergent function. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 45 | bool convergent = false; |
| 46 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 47 | /// True if this function calls alloca (in the C sense). |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 48 | bool usesDynamicAlloca = false; |
| 49 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 50 | /// Number of instructions in the analyzed blocks. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 51 | unsigned NumInsts = false; |
| 52 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 53 | /// Number of analyzed blocks. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 54 | unsigned NumBlocks = false; |
| 55 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 56 | /// Keeps track of basic block code size estimates. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 57 | DenseMap<const BasicBlock *, unsigned> NumBBInsts; |
| 58 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 59 | /// Keep track of the number of calls to 'big' functions. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 60 | unsigned NumCalls = false; |
| 61 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 62 | /// The number of calls to internal functions with a single caller. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 63 | /// |
| 64 | /// These are likely targets for future inlining, likely exposed by |
| 65 | /// interleaved devirtualization. |
| 66 | unsigned NumInlineCandidates = 0; |
| 67 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 68 | /// How many instructions produce vector values. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 69 | /// |
| 70 | /// The inliner is more aggressive with inlining vector kernels. |
| 71 | unsigned NumVectorInsts = 0; |
| 72 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 73 | /// How many 'ret' instructions the blocks contain. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 74 | unsigned NumRets = 0; |
| 75 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 76 | /// Add information about a block to the current state. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 77 | void analyzeBasicBlock(const BasicBlock *BB, const TargetTransformInfo &TTI, |
| 78 | const SmallPtrSetImpl<const Value*> &EphValues); |
| 79 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 80 | /// Collect a loop's ephemeral values (those used only by an assume |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 81 | /// or similar intrinsics in the loop). |
| 82 | static void collectEphemeralValues(const Loop *L, AssumptionCache *AC, |
| 83 | SmallPtrSetImpl<const Value *> &EphValues); |
| 84 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame] | 85 | /// Collect a functions's ephemeral values (those used only by an |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 86 | /// assume or similar intrinsics in the function). |
| 87 | static void collectEphemeralValues(const Function *L, AssumptionCache *AC, |
| 88 | SmallPtrSetImpl<const Value *> &EphValues); |
| 89 | }; |
| 90 | |
| 91 | } |
| 92 | |
| 93 | #endif |