Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 1 | //===-- InstrProfiling.cpp - Frontend instrumentation based profiling -----===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [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 |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 9 | // This pass lowers instrprof_* intrinsics emitted by a frontend for profiling. |
| 10 | // It also builds the data structures and initialization code needed for |
| 11 | // updating execution counts and emitting the profile at runtime. |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
David Blaikie | 4fe1fe1 | 2018-03-23 22:11:06 +0000 | [diff] [blame] | 15 | #include "llvm/Transforms/Instrumentation/InstrProfiling.h" |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/ArrayRef.h" |
| 17 | #include "llvm/ADT/SmallVector.h" |
| 18 | #include "llvm/ADT/StringRef.h" |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/Triple.h" |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/Twine.h" |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/LoopInfo.h" |
Marcin Koscielnicki | 1c2bd1e | 2016-11-21 11:57:19 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 23 | #include "llvm/IR/Attributes.h" |
| 24 | #include "llvm/IR/BasicBlock.h" |
| 25 | #include "llvm/IR/Constant.h" |
| 26 | #include "llvm/IR/Constants.h" |
| 27 | #include "llvm/IR/DerivedTypes.h" |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 28 | #include "llvm/IR/Dominators.h" |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 29 | #include "llvm/IR/Function.h" |
| 30 | #include "llvm/IR/GlobalValue.h" |
| 31 | #include "llvm/IR/GlobalVariable.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 32 | #include "llvm/IR/IRBuilder.h" |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 33 | #include "llvm/IR/Instruction.h" |
| 34 | #include "llvm/IR/Instructions.h" |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 35 | #include "llvm/IR/IntrinsicInst.h" |
| 36 | #include "llvm/IR/Module.h" |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 37 | #include "llvm/IR/Type.h" |
| 38 | #include "llvm/Pass.h" |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 39 | #include "llvm/ProfileData/InstrProf.h" |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 40 | #include "llvm/Support/Casting.h" |
| 41 | #include "llvm/Support/CommandLine.h" |
| 42 | #include "llvm/Support/Error.h" |
| 43 | #include "llvm/Support/ErrorHandling.h" |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 44 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 45 | #include "llvm/Transforms/Utils/ModuleUtils.h" |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 46 | #include "llvm/Transforms/Utils/SSAUpdater.h" |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 47 | #include <algorithm> |
| 48 | #include <cassert> |
| 49 | #include <cstddef> |
| 50 | #include <cstdint> |
| 51 | #include <string> |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 52 | |
| 53 | using namespace llvm; |
| 54 | |
| 55 | #define DEBUG_TYPE "instrprof" |
| 56 | |
Rong Xu | 48596b6 | 2017-04-04 16:42:20 +0000 | [diff] [blame] | 57 | // The start and end values of precise value profile range for memory |
| 58 | // intrinsic sizes |
| 59 | cl::opt<std::string> MemOPSizeRange( |
| 60 | "memop-size-range", |
| 61 | cl::desc("Set the range of size in memory intrinsic calls to be profiled " |
| 62 | "precisely, in a format of <start_val>:<end_val>"), |
| 63 | cl::init("")); |
| 64 | |
| 65 | // The value that considered to be large value in memory intrinsic. |
| 66 | cl::opt<unsigned> MemOPSizeLarge( |
| 67 | "memop-size-large", |
| 68 | cl::desc("Set large value thresthold in memory intrinsic size profiling. " |
| 69 | "Value of 0 disables the large value profiling."), |
| 70 | cl::init(8192)); |
| 71 | |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 72 | namespace { |
| 73 | |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 74 | cl::opt<bool> DoNameCompression("enable-name-compression", |
| 75 | cl::desc("Enable name string compression"), |
| 76 | cl::init(true)); |
| 77 | |
Rong Xu | 20f5df1 | 2017-01-11 20:19:41 +0000 | [diff] [blame] | 78 | cl::opt<bool> DoHashBasedCounterSplit( |
| 79 | "hash-based-counter-split", |
| 80 | cl::desc("Rename counter variable of a comdat function based on cfg hash"), |
| 81 | cl::init(true)); |
| 82 | |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 83 | cl::opt<bool> ValueProfileStaticAlloc( |
| 84 | "vp-static-alloc", |
| 85 | cl::desc("Do static counter allocation for value profiler"), |
| 86 | cl::init(true)); |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 87 | |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 88 | cl::opt<double> NumCountersPerValueSite( |
| 89 | "vp-counters-per-site", |
| 90 | cl::desc("The average number of profile counters allocated " |
| 91 | "per value profiling site."), |
| 92 | // This is set to a very small value because in real programs, only |
| 93 | // a very small percentage of value sites have non-zero targets, e.g, 1/30. |
| 94 | // For those sites with non-zero profile, the average number of targets |
| 95 | // is usually smaller than 2. |
| 96 | cl::init(1.0)); |
| 97 | |
Vedant Kumar | ee6c233 | 2018-08-16 22:24:47 +0000 | [diff] [blame] | 98 | cl::opt<bool> AtomicCounterUpdateAll( |
| 99 | "instrprof-atomic-counter-update-all", cl::ZeroOrMore, |
| 100 | cl::desc("Make all profile counter updates atomic (for testing only)"), |
| 101 | cl::init(false)); |
| 102 | |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 103 | cl::opt<bool> AtomicCounterUpdatePromoted( |
| 104 | "atomic-counter-update-promoted", cl::ZeroOrMore, |
| 105 | cl::desc("Do counter update using atomic fetch add " |
| 106 | " for promoted counters only"), |
| 107 | cl::init(false)); |
| 108 | |
| 109 | // If the option is not specified, the default behavior about whether |
| 110 | // counter promotion is done depends on how instrumentaiton lowering |
| 111 | // pipeline is setup, i.e., the default value of true of this option |
| 112 | // does not mean the promotion will be done by default. Explicitly |
| 113 | // setting this option can override the default behavior. |
| 114 | cl::opt<bool> DoCounterPromotion("do-counter-promotion", cl::ZeroOrMore, |
| 115 | cl::desc("Do counter register promotion"), |
| 116 | cl::init(false)); |
| 117 | cl::opt<unsigned> MaxNumOfPromotionsPerLoop( |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 118 | cl::ZeroOrMore, "max-counter-promotions-per-loop", cl::init(20), |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 119 | cl::desc("Max number counter promotions per loop to avoid" |
| 120 | " increasing register pressure too much")); |
| 121 | |
| 122 | // A debug option |
| 123 | cl::opt<int> |
| 124 | MaxNumOfPromotions(cl::ZeroOrMore, "max-counter-promotions", cl::init(-1), |
| 125 | cl::desc("Max number of allowed counter promotions")); |
| 126 | |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 127 | cl::opt<unsigned> SpeculativeCounterPromotionMaxExiting( |
| 128 | cl::ZeroOrMore, "speculative-counter-promotion-max-exiting", cl::init(3), |
| 129 | cl::desc("The max number of exiting blocks of a loop to allow " |
| 130 | " speculative counter promotion")); |
| 131 | |
| 132 | cl::opt<bool> SpeculativeCounterPromotionToLoop( |
| 133 | cl::ZeroOrMore, "speculative-counter-promotion-to-loop", cl::init(false), |
| 134 | cl::desc("When the option is false, if the target block is in a loop, " |
| 135 | "the promotion will be disallowed unless the promoted counter " |
| 136 | " update can be further/iteratively promoted into an acyclic " |
| 137 | " region.")); |
| 138 | |
| 139 | cl::opt<bool> IterativeCounterPromotion( |
| 140 | cl::ZeroOrMore, "iterative-counter-promotion", cl::init(true), |
| 141 | cl::desc("Allow counter promotion across the whole loop nest.")); |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 142 | |
Xinliang David Li | e6b8929 | 2016-04-18 17:47:38 +0000 | [diff] [blame] | 143 | class InstrProfilingLegacyPass : public ModulePass { |
| 144 | InstrProfiling InstrProf; |
| 145 | |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 146 | public: |
| 147 | static char ID; |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 148 | |
| 149 | InstrProfilingLegacyPass() : ModulePass(ID) {} |
Xinliang David Li | e6b8929 | 2016-04-18 17:47:38 +0000 | [diff] [blame] | 150 | InstrProfilingLegacyPass(const InstrProfOptions &Options) |
| 151 | : ModulePass(ID), InstrProf(Options) {} |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 152 | |
Mehdi Amini | 117296c | 2016-10-01 02:56:57 +0000 | [diff] [blame] | 153 | StringRef getPassName() const override { |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 154 | return "Frontend instrumentation-based coverage lowering"; |
| 155 | } |
| 156 | |
Marcin Koscielnicki | 1c2bd1e | 2016-11-21 11:57:19 +0000 | [diff] [blame] | 157 | bool runOnModule(Module &M) override { |
| 158 | return InstrProf.run(M, getAnalysis<TargetLibraryInfoWrapperPass>().getTLI()); |
| 159 | } |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 160 | |
| 161 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
| 162 | AU.setPreservesCFG(); |
Marcin Koscielnicki | 1c2bd1e | 2016-11-21 11:57:19 +0000 | [diff] [blame] | 163 | AU.addRequired<TargetLibraryInfoWrapperPass>(); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 164 | } |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 165 | }; |
| 166 | |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 167 | /// |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 168 | /// A helper class to promote one counter RMW operation in the loop |
| 169 | /// into register update. |
| 170 | /// |
| 171 | /// RWM update for the counter will be sinked out of the loop after |
| 172 | /// the transformation. |
| 173 | /// |
| 174 | class PGOCounterPromoterHelper : public LoadAndStorePromoter { |
| 175 | public: |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 176 | PGOCounterPromoterHelper( |
| 177 | Instruction *L, Instruction *S, SSAUpdater &SSA, Value *Init, |
| 178 | BasicBlock *PH, ArrayRef<BasicBlock *> ExitBlocks, |
| 179 | ArrayRef<Instruction *> InsertPts, |
| 180 | DenseMap<Loop *, SmallVector<LoadStorePair, 8>> &LoopToCands, |
| 181 | LoopInfo &LI) |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 182 | : LoadAndStorePromoter({L, S}, SSA), Store(S), ExitBlocks(ExitBlocks), |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 183 | InsertPts(InsertPts), LoopToCandidates(LoopToCands), LI(LI) { |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 184 | assert(isa<LoadInst>(L)); |
| 185 | assert(isa<StoreInst>(S)); |
| 186 | SSA.AddAvailableValue(PH, Init); |
| 187 | } |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 188 | |
Alina Sbirlea | 6cba96e | 2019-02-06 20:25:17 +0000 | [diff] [blame] | 189 | void doExtraRewritesBeforeFinalDeletion() override { |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 190 | for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) { |
| 191 | BasicBlock *ExitBlock = ExitBlocks[i]; |
| 192 | Instruction *InsertPos = InsertPts[i]; |
| 193 | // Get LiveIn value into the ExitBlock. If there are multiple |
| 194 | // predecessors, the value is defined by a PHI node in this |
| 195 | // block. |
| 196 | Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock); |
| 197 | Value *Addr = cast<StoreInst>(Store)->getPointerOperand(); |
James Y Knight | 14359ef | 2019-02-01 20:44:24 +0000 | [diff] [blame] | 198 | Type *Ty = LiveInValue->getType(); |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 199 | IRBuilder<> Builder(InsertPos); |
| 200 | if (AtomicCounterUpdatePromoted) |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 201 | // automic update currently can only be promoted across the current |
| 202 | // loop, not the whole loop nest. |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 203 | Builder.CreateAtomicRMW(AtomicRMWInst::Add, Addr, LiveInValue, |
| 204 | AtomicOrdering::SequentiallyConsistent); |
| 205 | else { |
James Y Knight | 14359ef | 2019-02-01 20:44:24 +0000 | [diff] [blame] | 206 | LoadInst *OldVal = Builder.CreateLoad(Ty, Addr, "pgocount.promoted"); |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 207 | auto *NewVal = Builder.CreateAdd(OldVal, LiveInValue); |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 208 | auto *NewStore = Builder.CreateStore(NewVal, Addr); |
| 209 | |
| 210 | // Now update the parent loop's candidate list: |
| 211 | if (IterativeCounterPromotion) { |
| 212 | auto *TargetLoop = LI.getLoopFor(ExitBlock); |
| 213 | if (TargetLoop) |
| 214 | LoopToCandidates[TargetLoop].emplace_back(OldVal, NewStore); |
| 215 | } |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 216 | } |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | private: |
| 221 | Instruction *Store; |
| 222 | ArrayRef<BasicBlock *> ExitBlocks; |
| 223 | ArrayRef<Instruction *> InsertPts; |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 224 | DenseMap<Loop *, SmallVector<LoadStorePair, 8>> &LoopToCandidates; |
| 225 | LoopInfo &LI; |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 226 | }; |
| 227 | |
| 228 | /// A helper class to do register promotion for all profile counter |
| 229 | /// updates in a loop. |
| 230 | /// |
| 231 | class PGOCounterPromoter { |
| 232 | public: |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 233 | PGOCounterPromoter( |
| 234 | DenseMap<Loop *, SmallVector<LoadStorePair, 8>> &LoopToCands, |
| 235 | Loop &CurLoop, LoopInfo &LI) |
| 236 | : LoopToCandidates(LoopToCands), ExitBlocks(), InsertPts(), L(CurLoop), |
| 237 | LI(LI) { |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 238 | |
| 239 | SmallVector<BasicBlock *, 8> LoopExitBlocks; |
| 240 | SmallPtrSet<BasicBlock *, 8> BlockSet; |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 241 | L.getExitBlocks(LoopExitBlocks); |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 242 | |
| 243 | for (BasicBlock *ExitBlock : LoopExitBlocks) { |
| 244 | if (BlockSet.insert(ExitBlock).second) { |
| 245 | ExitBlocks.push_back(ExitBlock); |
| 246 | InsertPts.push_back(&*ExitBlock->getFirstInsertionPt()); |
| 247 | } |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | bool run(int64_t *NumPromoted) { |
Xinliang David Li | c23d2c6 | 2017-11-30 19:16:25 +0000 | [diff] [blame] | 252 | // Skip 'infinite' loops: |
| 253 | if (ExitBlocks.size() == 0) |
| 254 | return false; |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 255 | unsigned MaxProm = getMaxNumOfPromotionsInLoop(&L); |
| 256 | if (MaxProm == 0) |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 257 | return false; |
| 258 | |
| 259 | unsigned Promoted = 0; |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 260 | for (auto &Cand : LoopToCandidates[&L]) { |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 261 | |
| 262 | SmallVector<PHINode *, 4> NewPHIs; |
| 263 | SSAUpdater SSA(&NewPHIs); |
| 264 | Value *InitVal = ConstantInt::get(Cand.first->getType(), 0); |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 265 | |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 266 | PGOCounterPromoterHelper Promoter(Cand.first, Cand.second, SSA, InitVal, |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 267 | L.getLoopPreheader(), ExitBlocks, |
| 268 | InsertPts, LoopToCandidates, LI); |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 269 | Promoter.run(SmallVector<Instruction *, 2>({Cand.first, Cand.second})); |
| 270 | Promoted++; |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 271 | if (Promoted >= MaxProm) |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 272 | break; |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 273 | |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 274 | (*NumPromoted)++; |
| 275 | if (MaxNumOfPromotions != -1 && *NumPromoted >= MaxNumOfPromotions) |
| 276 | break; |
| 277 | } |
| 278 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 279 | LLVM_DEBUG(dbgs() << Promoted << " counters promoted for loop (depth=" |
| 280 | << L.getLoopDepth() << ")\n"); |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 281 | return Promoted != 0; |
| 282 | } |
| 283 | |
| 284 | private: |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 285 | bool allowSpeculativeCounterPromotion(Loop *LP) { |
| 286 | SmallVector<BasicBlock *, 8> ExitingBlocks; |
| 287 | L.getExitingBlocks(ExitingBlocks); |
| 288 | // Not considierered speculative. |
| 289 | if (ExitingBlocks.size() == 1) |
| 290 | return true; |
| 291 | if (ExitingBlocks.size() > SpeculativeCounterPromotionMaxExiting) |
| 292 | return false; |
| 293 | return true; |
| 294 | } |
| 295 | |
| 296 | // Returns the max number of Counter Promotions for LP. |
| 297 | unsigned getMaxNumOfPromotionsInLoop(Loop *LP) { |
| 298 | // We can't insert into a catchswitch. |
| 299 | SmallVector<BasicBlock *, 8> LoopExitBlocks; |
| 300 | LP->getExitBlocks(LoopExitBlocks); |
| 301 | if (llvm::any_of(LoopExitBlocks, [](BasicBlock *Exit) { |
| 302 | return isa<CatchSwitchInst>(Exit->getTerminator()); |
| 303 | })) |
| 304 | return 0; |
| 305 | |
| 306 | if (!LP->hasDedicatedExits()) |
| 307 | return 0; |
| 308 | |
| 309 | BasicBlock *PH = LP->getLoopPreheader(); |
| 310 | if (!PH) |
| 311 | return 0; |
| 312 | |
| 313 | SmallVector<BasicBlock *, 8> ExitingBlocks; |
| 314 | LP->getExitingBlocks(ExitingBlocks); |
| 315 | // Not considierered speculative. |
| 316 | if (ExitingBlocks.size() == 1) |
| 317 | return MaxNumOfPromotionsPerLoop; |
| 318 | |
| 319 | if (ExitingBlocks.size() > SpeculativeCounterPromotionMaxExiting) |
| 320 | return 0; |
| 321 | |
| 322 | // Whether the target block is in a loop does not matter: |
| 323 | if (SpeculativeCounterPromotionToLoop) |
| 324 | return MaxNumOfPromotionsPerLoop; |
| 325 | |
| 326 | // Now check the target block: |
| 327 | unsigned MaxProm = MaxNumOfPromotionsPerLoop; |
| 328 | for (auto *TargetBlock : LoopExitBlocks) { |
| 329 | auto *TargetLoop = LI.getLoopFor(TargetBlock); |
| 330 | if (!TargetLoop) |
| 331 | continue; |
| 332 | unsigned MaxPromForTarget = getMaxNumOfPromotionsInLoop(TargetLoop); |
| 333 | unsigned PendingCandsInTarget = LoopToCandidates[TargetLoop].size(); |
| 334 | MaxProm = |
| 335 | std::min(MaxProm, std::max(MaxPromForTarget, PendingCandsInTarget) - |
| 336 | PendingCandsInTarget); |
| 337 | } |
| 338 | return MaxProm; |
| 339 | } |
| 340 | |
| 341 | DenseMap<Loop *, SmallVector<LoadStorePair, 8>> &LoopToCandidates; |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 342 | SmallVector<BasicBlock *, 8> ExitBlocks; |
| 343 | SmallVector<Instruction *, 8> InsertPts; |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 344 | Loop &L; |
| 345 | LoopInfo &LI; |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 346 | }; |
| 347 | |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 348 | } // end anonymous namespace |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 349 | |
Sean Silva | fd03ac6 | 2016-08-09 00:28:38 +0000 | [diff] [blame] | 350 | PreservedAnalyses InstrProfiling::run(Module &M, ModuleAnalysisManager &AM) { |
Marcin Koscielnicki | 1c2bd1e | 2016-11-21 11:57:19 +0000 | [diff] [blame] | 351 | auto &TLI = AM.getResult<TargetLibraryAnalysis>(M); |
| 352 | if (!run(M, TLI)) |
Xinliang David Li | e6b8929 | 2016-04-18 17:47:38 +0000 | [diff] [blame] | 353 | return PreservedAnalyses::all(); |
| 354 | |
| 355 | return PreservedAnalyses::none(); |
| 356 | } |
| 357 | |
| 358 | char InstrProfilingLegacyPass::ID = 0; |
Marcin Koscielnicki | 1c2bd1e | 2016-11-21 11:57:19 +0000 | [diff] [blame] | 359 | INITIALIZE_PASS_BEGIN( |
| 360 | InstrProfilingLegacyPass, "instrprof", |
| 361 | "Frontend instrumentation-based coverage lowering.", false, false) |
| 362 | INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) |
| 363 | INITIALIZE_PASS_END( |
| 364 | InstrProfilingLegacyPass, "instrprof", |
| 365 | "Frontend instrumentation-based coverage lowering.", false, false) |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 366 | |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 367 | ModulePass * |
| 368 | llvm::createInstrProfilingLegacyPass(const InstrProfOptions &Options) { |
Xinliang David Li | e6b8929 | 2016-04-18 17:47:38 +0000 | [diff] [blame] | 369 | return new InstrProfilingLegacyPass(Options); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 370 | } |
| 371 | |
Xinliang David Li | 4ca1733 | 2016-09-18 18:34:07 +0000 | [diff] [blame] | 372 | static InstrProfIncrementInst *castToIncrementInst(Instruction *Instr) { |
| 373 | InstrProfIncrementInst *Inc = dyn_cast<InstrProfIncrementInstStep>(Instr); |
| 374 | if (Inc) |
| 375 | return Inc; |
| 376 | return dyn_cast<InstrProfIncrementInst>(Instr); |
| 377 | } |
| 378 | |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 379 | bool InstrProfiling::lowerIntrinsics(Function *F) { |
| 380 | bool MadeChange = false; |
| 381 | PromotionCandidates.clear(); |
| 382 | for (BasicBlock &BB : *F) { |
| 383 | for (auto I = BB.begin(), E = BB.end(); I != E;) { |
| 384 | auto Instr = I++; |
| 385 | InstrProfIncrementInst *Inc = castToIncrementInst(&*Instr); |
| 386 | if (Inc) { |
| 387 | lowerIncrement(Inc); |
| 388 | MadeChange = true; |
| 389 | } else if (auto *Ind = dyn_cast<InstrProfValueProfileInst>(Instr)) { |
| 390 | lowerValueProfileInst(Ind); |
| 391 | MadeChange = true; |
| 392 | } |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | if (!MadeChange) |
| 397 | return false; |
| 398 | |
| 399 | promoteCounterLoadStores(F); |
| 400 | return true; |
| 401 | } |
| 402 | |
| 403 | bool InstrProfiling::isCounterPromotionEnabled() const { |
| 404 | if (DoCounterPromotion.getNumOccurrences() > 0) |
| 405 | return DoCounterPromotion; |
| 406 | |
| 407 | return Options.DoCounterPromotion; |
| 408 | } |
| 409 | |
| 410 | void InstrProfiling::promoteCounterLoadStores(Function *F) { |
| 411 | if (!isCounterPromotionEnabled()) |
| 412 | return; |
| 413 | |
| 414 | DominatorTree DT(*F); |
| 415 | LoopInfo LI(DT); |
| 416 | DenseMap<Loop *, SmallVector<LoadStorePair, 8>> LoopPromotionCandidates; |
| 417 | |
| 418 | for (const auto &LoadStore : PromotionCandidates) { |
| 419 | auto *CounterLoad = LoadStore.first; |
| 420 | auto *CounterStore = LoadStore.second; |
| 421 | BasicBlock *BB = CounterLoad->getParent(); |
| 422 | Loop *ParentLoop = LI.getLoopFor(BB); |
| 423 | if (!ParentLoop) |
| 424 | continue; |
| 425 | LoopPromotionCandidates[ParentLoop].emplace_back(CounterLoad, CounterStore); |
| 426 | } |
| 427 | |
| 428 | SmallVector<Loop *, 4> Loops = LI.getLoopsInPreorder(); |
| 429 | |
Xinliang David Li | f564c69 | 2017-07-12 23:27:44 +0000 | [diff] [blame] | 430 | // Do a post-order traversal of the loops so that counter updates can be |
| 431 | // iteratively hoisted outside the loop nest. |
| 432 | for (auto *Loop : llvm::reverse(Loops)) { |
| 433 | PGOCounterPromoter Promoter(LoopPromotionCandidates, *Loop, LI); |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 434 | Promoter.run(&TotalCountersPromoted); |
| 435 | } |
| 436 | } |
| 437 | |
Vedant Kumar | 1ee511c | 2018-01-26 23:54:24 +0000 | [diff] [blame] | 438 | /// Check if the module contains uses of any profiling intrinsics. |
| 439 | static bool containsProfilingIntrinsics(Module &M) { |
| 440 | if (auto *F = M.getFunction( |
| 441 | Intrinsic::getName(llvm::Intrinsic::instrprof_increment))) |
Vedant Kumar | cff9462 | 2018-01-27 00:01:04 +0000 | [diff] [blame] | 442 | if (!F->use_empty()) |
| 443 | return true; |
Vedant Kumar | 1ee511c | 2018-01-26 23:54:24 +0000 | [diff] [blame] | 444 | if (auto *F = M.getFunction( |
| 445 | Intrinsic::getName(llvm::Intrinsic::instrprof_increment_step))) |
Vedant Kumar | cff9462 | 2018-01-27 00:01:04 +0000 | [diff] [blame] | 446 | if (!F->use_empty()) |
| 447 | return true; |
Vedant Kumar | 1ee511c | 2018-01-26 23:54:24 +0000 | [diff] [blame] | 448 | if (auto *F = M.getFunction( |
| 449 | Intrinsic::getName(llvm::Intrinsic::instrprof_value_profile))) |
Vedant Kumar | cff9462 | 2018-01-27 00:01:04 +0000 | [diff] [blame] | 450 | if (!F->use_empty()) |
| 451 | return true; |
Vedant Kumar | 1ee511c | 2018-01-26 23:54:24 +0000 | [diff] [blame] | 452 | return false; |
| 453 | } |
| 454 | |
Marcin Koscielnicki | 1c2bd1e | 2016-11-21 11:57:19 +0000 | [diff] [blame] | 455 | bool InstrProfiling::run(Module &M, const TargetLibraryInfo &TLI) { |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 456 | this->M = &M; |
Marcin Koscielnicki | 1c2bd1e | 2016-11-21 11:57:19 +0000 | [diff] [blame] | 457 | this->TLI = &TLI; |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 458 | NamesVar = nullptr; |
| 459 | NamesSize = 0; |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 460 | ProfileDataMap.clear(); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 461 | UsedVars.clear(); |
Rong Xu | 48596b6 | 2017-04-04 16:42:20 +0000 | [diff] [blame] | 462 | getMemOPSizeRangeFromOption(MemOPSizeRange, MemOPSizeRangeStart, |
| 463 | MemOPSizeRangeLast); |
Vedant Kumar | 1a6a2b6 | 2017-04-15 00:09:57 +0000 | [diff] [blame] | 464 | TT = Triple(M.getTargetTriple()); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 465 | |
Vedant Kumar | 9a041a7 | 2018-02-28 19:00:08 +0000 | [diff] [blame] | 466 | // Emit the runtime hook even if no counters are present. |
| 467 | bool MadeChange = emitRuntimeHook(); |
| 468 | |
| 469 | // Improve compile time by avoiding linear scans when there is no work. |
| 470 | GlobalVariable *CoverageNamesVar = |
| 471 | M.getNamedGlobal(getCoverageUnusedNamesVarName()); |
| 472 | if (!containsProfilingIntrinsics(M) && !CoverageNamesVar) |
| 473 | return MadeChange; |
| 474 | |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 475 | // We did not know how many value sites there would be inside |
| 476 | // the instrumented function. This is counting the number of instrumented |
| 477 | // target value sites to enter it as field in the profile data variable. |
Rong Xu | 294572f | 2016-01-19 18:29:54 +0000 | [diff] [blame] | 478 | for (Function &F : M) { |
| 479 | InstrProfIncrementInst *FirstProfIncInst = nullptr; |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 480 | for (BasicBlock &BB : F) |
Rong Xu | 294572f | 2016-01-19 18:29:54 +0000 | [diff] [blame] | 481 | for (auto I = BB.begin(), E = BB.end(); I != E; I++) |
| 482 | if (auto *Ind = dyn_cast<InstrProfValueProfileInst>(I)) |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 483 | computeNumValueSiteCounts(Ind); |
Rong Xu | 294572f | 2016-01-19 18:29:54 +0000 | [diff] [blame] | 484 | else if (FirstProfIncInst == nullptr) |
| 485 | FirstProfIncInst = dyn_cast<InstrProfIncrementInst>(I); |
| 486 | |
| 487 | // Value profiling intrinsic lowering requires per-function profile data |
| 488 | // variable to be created first. |
| 489 | if (FirstProfIncInst != nullptr) |
| 490 | static_cast<void>(getOrCreateRegionCounters(FirstProfIncInst)); |
| 491 | } |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 492 | |
| 493 | for (Function &F : M) |
Xinliang David Li | b67530e | 2017-06-25 00:26:43 +0000 | [diff] [blame] | 494 | MadeChange |= lowerIntrinsics(&F); |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 495 | |
Vedant Kumar | 1ee511c | 2018-01-26 23:54:24 +0000 | [diff] [blame] | 496 | if (CoverageNamesVar) { |
Xinliang David Li | 8105607 | 2016-01-07 20:05:49 +0000 | [diff] [blame] | 497 | lowerCoverageData(CoverageNamesVar); |
Justin Bogner | d24e185 | 2015-02-11 02:52:44 +0000 | [diff] [blame] | 498 | MadeChange = true; |
| 499 | } |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 500 | |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 501 | if (!MadeChange) |
| 502 | return false; |
| 503 | |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 504 | emitVNodes(); |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 505 | emitNameData(); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 506 | emitRegistration(); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 507 | emitUses(); |
| 508 | emitInitialization(); |
| 509 | return true; |
| 510 | } |
| 511 | |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 512 | static FunctionCallee |
| 513 | getOrInsertValueProfilingCall(Module &M, const TargetLibraryInfo &TLI, |
| 514 | bool IsRange = false) { |
Xinliang David Li | c767323 | 2015-11-22 00:22:07 +0000 | [diff] [blame] | 515 | LLVMContext &Ctx = M.getContext(); |
| 516 | auto *ReturnTy = Type::getVoidTy(M.getContext()); |
Rong Xu | 60faea1 | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 517 | |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 518 | AttributeList AL; |
| 519 | if (auto AK = TLI.getExtAttrForI32Param(false)) |
| 520 | AL = AL.addParamAttribute(M.getContext(), 2, AK); |
| 521 | |
Rong Xu | 60faea1 | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 522 | if (!IsRange) { |
| 523 | Type *ParamTypes[] = { |
Xinliang David Li | c767323 | 2015-11-22 00:22:07 +0000 | [diff] [blame] | 524 | #define VALUE_PROF_FUNC_PARAM(ParamType, ParamName, ParamLLVMType) ParamLLVMType |
| 525 | #include "llvm/ProfileData/InstrProfData.inc" |
Rong Xu | 60faea1 | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 526 | }; |
| 527 | auto *ValueProfilingCallTy = |
| 528 | FunctionType::get(ReturnTy, makeArrayRef(ParamTypes), false); |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 529 | return M.getOrInsertFunction(getInstrProfValueProfFuncName(), |
| 530 | ValueProfilingCallTy, AL); |
Rong Xu | 60faea1 | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 531 | } else { |
| 532 | Type *RangeParamTypes[] = { |
| 533 | #define VALUE_RANGE_PROF 1 |
| 534 | #define VALUE_PROF_FUNC_PARAM(ParamType, ParamName, ParamLLVMType) ParamLLVMType |
| 535 | #include "llvm/ProfileData/InstrProfData.inc" |
| 536 | #undef VALUE_RANGE_PROF |
| 537 | }; |
| 538 | auto *ValueRangeProfilingCallTy = |
| 539 | FunctionType::get(ReturnTy, makeArrayRef(RangeParamTypes), false); |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 540 | return M.getOrInsertFunction(getInstrProfValueRangeProfFuncName(), |
| 541 | ValueRangeProfilingCallTy, AL); |
Rong Xu | 60faea1 | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 542 | } |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 543 | } |
| 544 | |
| 545 | void InstrProfiling::computeNumValueSiteCounts(InstrProfValueProfileInst *Ind) { |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 546 | GlobalVariable *Name = Ind->getName(); |
| 547 | uint64_t ValueKind = Ind->getValueKind()->getZExtValue(); |
| 548 | uint64_t Index = Ind->getIndex()->getZExtValue(); |
| 549 | auto It = ProfileDataMap.find(Name); |
| 550 | if (It == ProfileDataMap.end()) { |
| 551 | PerFunctionProfileData PD; |
| 552 | PD.NumValueSites[ValueKind] = Index + 1; |
| 553 | ProfileDataMap[Name] = PD; |
| 554 | } else if (It->second.NumValueSites[ValueKind] <= Index) |
| 555 | It->second.NumValueSites[ValueKind] = Index + 1; |
| 556 | } |
| 557 | |
| 558 | void InstrProfiling::lowerValueProfileInst(InstrProfValueProfileInst *Ind) { |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 559 | GlobalVariable *Name = Ind->getName(); |
| 560 | auto It = ProfileDataMap.find(Name); |
| 561 | assert(It != ProfileDataMap.end() && It->second.DataVar && |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 562 | "value profiling detected in function with no counter incerement"); |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 563 | |
| 564 | GlobalVariable *DataVar = It->second.DataVar; |
| 565 | uint64_t ValueKind = Ind->getValueKind()->getZExtValue(); |
| 566 | uint64_t Index = Ind->getIndex()->getZExtValue(); |
| 567 | for (uint32_t Kind = IPVK_First; Kind < ValueKind; ++Kind) |
| 568 | Index += It->second.NumValueSites[Kind]; |
| 569 | |
| 570 | IRBuilder<> Builder(Ind); |
Rong Xu | 60faea1 | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 571 | bool IsRange = (Ind->getValueKind()->getZExtValue() == |
| 572 | llvm::InstrProfValueKind::IPVK_MemOPSize); |
| 573 | CallInst *Call = nullptr; |
| 574 | if (!IsRange) { |
| 575 | Value *Args[3] = {Ind->getTargetValue(), |
| 576 | Builder.CreateBitCast(DataVar, Builder.getInt8PtrTy()), |
| 577 | Builder.getInt32(Index)}; |
| 578 | Call = Builder.CreateCall(getOrInsertValueProfilingCall(*M, *TLI), Args); |
| 579 | } else { |
Rong Xu | 48596b6 | 2017-04-04 16:42:20 +0000 | [diff] [blame] | 580 | Value *Args[6] = { |
| 581 | Ind->getTargetValue(), |
| 582 | Builder.CreateBitCast(DataVar, Builder.getInt8PtrTy()), |
| 583 | Builder.getInt32(Index), |
| 584 | Builder.getInt64(MemOPSizeRangeStart), |
| 585 | Builder.getInt64(MemOPSizeRangeLast), |
| 586 | Builder.getInt64(MemOPSizeLarge == 0 ? INT64_MIN : MemOPSizeLarge)}; |
Rong Xu | 60faea1 | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 587 | Call = |
| 588 | Builder.CreateCall(getOrInsertValueProfilingCall(*M, *TLI, true), Args); |
| 589 | } |
Marcin Koscielnicki | 1c2bd1e | 2016-11-21 11:57:19 +0000 | [diff] [blame] | 590 | if (auto AK = TLI->getExtAttrForI32Param(false)) |
Reid Kleckner | a0b45f4 | 2017-05-03 18:17:31 +0000 | [diff] [blame] | 591 | Call->addParamAttr(2, AK); |
Marcin Koscielnicki | 1c2bd1e | 2016-11-21 11:57:19 +0000 | [diff] [blame] | 592 | Ind->replaceAllUsesWith(Call); |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 593 | Ind->eraseFromParent(); |
| 594 | } |
| 595 | |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 596 | void InstrProfiling::lowerIncrement(InstrProfIncrementInst *Inc) { |
| 597 | GlobalVariable *Counters = getOrCreateRegionCounters(Inc); |
| 598 | |
Duncan P. N. Exon Smith | e82c286 | 2015-10-13 17:39:10 +0000 | [diff] [blame] | 599 | IRBuilder<> Builder(Inc); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 600 | uint64_t Index = Inc->getIndex()->getZExtValue(); |
James Y Knight | 7716075 | 2019-02-01 20:44:47 +0000 | [diff] [blame] | 601 | Value *Addr = Builder.CreateConstInBoundsGEP2_64(Counters->getValueType(), |
| 602 | Counters, 0, Index); |
Vedant Kumar | ee6c233 | 2018-08-16 22:24:47 +0000 | [diff] [blame] | 603 | |
| 604 | if (Options.Atomic || AtomicCounterUpdateAll) { |
| 605 | Builder.CreateAtomicRMW(AtomicRMWInst::Add, Addr, Inc->getStep(), |
| 606 | AtomicOrdering::Monotonic); |
| 607 | } else { |
James Y Knight | 14359ef | 2019-02-01 20:44:24 +0000 | [diff] [blame] | 608 | Value *IncStep = Inc->getStep(); |
| 609 | Value *Load = Builder.CreateLoad(IncStep->getType(), Addr, "pgocount"); |
Vedant Kumar | ee6c233 | 2018-08-16 22:24:47 +0000 | [diff] [blame] | 610 | auto *Count = Builder.CreateAdd(Load, Inc->getStep()); |
| 611 | auto *Store = Builder.CreateStore(Count, Addr); |
| 612 | if (isCounterPromotionEnabled()) |
| 613 | PromotionCandidates.emplace_back(cast<Instruction>(Load), Store); |
| 614 | } |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 615 | Inc->eraseFromParent(); |
| 616 | } |
| 617 | |
Xinliang David Li | 8105607 | 2016-01-07 20:05:49 +0000 | [diff] [blame] | 618 | void InstrProfiling::lowerCoverageData(GlobalVariable *CoverageNamesVar) { |
Xinliang David Li | 8105607 | 2016-01-07 20:05:49 +0000 | [diff] [blame] | 619 | ConstantArray *Names = |
| 620 | cast<ConstantArray>(CoverageNamesVar->getInitializer()); |
| 621 | for (unsigned I = 0, E = Names->getNumOperands(); I < E; ++I) { |
| 622 | Constant *NC = Names->getOperand(I); |
| 623 | Value *V = NC->stripPointerCasts(); |
Justin Bogner | d24e185 | 2015-02-11 02:52:44 +0000 | [diff] [blame] | 624 | assert(isa<GlobalVariable>(V) && "Missing reference to function name"); |
| 625 | GlobalVariable *Name = cast<GlobalVariable>(V); |
| 626 | |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 627 | Name->setLinkage(GlobalValue::PrivateLinkage); |
| 628 | ReferencedNames.push_back(Name); |
Vedant Kumar | 55891fc | 2017-02-14 20:03:48 +0000 | [diff] [blame] | 629 | NC->dropAllReferences(); |
Justin Bogner | d24e185 | 2015-02-11 02:52:44 +0000 | [diff] [blame] | 630 | } |
Vedant Kumar | 55891fc | 2017-02-14 20:03:48 +0000 | [diff] [blame] | 631 | CoverageNamesVar->eraseFromParent(); |
Justin Bogner | d24e185 | 2015-02-11 02:52:44 +0000 | [diff] [blame] | 632 | } |
| 633 | |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 634 | /// Get the name of a profiling variable for a particular function. |
Xinliang David Li | 83bc422 | 2015-10-22 20:32:12 +0000 | [diff] [blame] | 635 | static std::string getVarName(InstrProfIncrementInst *Inc, StringRef Prefix) { |
Xinliang David Li | d1bab96 | 2015-12-12 17:28:03 +0000 | [diff] [blame] | 636 | StringRef NamePrefix = getInstrProfNameVarPrefix(); |
| 637 | StringRef Name = Inc->getName()->getName().substr(NamePrefix.size()); |
Rong Xu | 20f5df1 | 2017-01-11 20:19:41 +0000 | [diff] [blame] | 638 | Function *F = Inc->getParent()->getParent(); |
| 639 | Module *M = F->getParent(); |
| 640 | if (!DoHashBasedCounterSplit || !isIRPGOFlagSet(M) || |
| 641 | !canRenameComdatFunc(*F)) |
| 642 | return (Prefix + Name).str(); |
| 643 | uint64_t FuncHash = Inc->getHash()->getZExtValue(); |
| 644 | SmallVector<char, 24> HashPostfix; |
| 645 | if (Name.endswith((Twine(".") + Twine(FuncHash)).toStringRef(HashPostfix))) |
| 646 | return (Prefix + Name).str(); |
| 647 | return (Prefix + Name + "." + Twine(FuncHash)).str(); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 648 | } |
| 649 | |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 650 | static inline bool shouldRecordFunctionAddr(Function *F) { |
| 651 | // Check the linkage |
Vedant Kumar | 9c056c9 | 2017-06-13 22:12:35 +0000 | [diff] [blame] | 652 | bool HasAvailableExternallyLinkage = F->hasAvailableExternallyLinkage(); |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 653 | if (!F->hasLinkOnceLinkage() && !F->hasLocalLinkage() && |
Vedant Kumar | 9c056c9 | 2017-06-13 22:12:35 +0000 | [diff] [blame] | 654 | !HasAvailableExternallyLinkage) |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 655 | return true; |
Vedant Kumar | 9c056c9 | 2017-06-13 22:12:35 +0000 | [diff] [blame] | 656 | |
| 657 | // A function marked 'alwaysinline' with available_externally linkage can't |
| 658 | // have its address taken. Doing so would create an undefined external ref to |
| 659 | // the function, which would fail to link. |
| 660 | if (HasAvailableExternallyLinkage && |
| 661 | F->hasFnAttribute(Attribute::AlwaysInline)) |
| 662 | return false; |
| 663 | |
Rong Xu | af5aeba | 2016-04-27 21:17:30 +0000 | [diff] [blame] | 664 | // Prohibit function address recording if the function is both internal and |
| 665 | // COMDAT. This avoids the profile data variable referencing internal symbols |
| 666 | // in COMDAT. |
| 667 | if (F->hasLocalLinkage() && F->hasComdat()) |
| 668 | return false; |
Vedant Kumar | 9c056c9 | 2017-06-13 22:12:35 +0000 | [diff] [blame] | 669 | |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 670 | // Check uses of this function for other than direct calls or invokes to it. |
Xinliang David Li | 7008ce3 | 2016-06-02 16:33:41 +0000 | [diff] [blame] | 671 | // Inline virtual functions have linkeOnceODR linkage. When a key method |
| 672 | // exists, the vtable will only be emitted in the TU where the key method |
| 673 | // is defined. In a TU where vtable is not available, the function won't |
Xinliang David Li | 6c44e9e | 2016-06-03 23:02:28 +0000 | [diff] [blame] | 674 | // be 'addresstaken'. If its address is not recorded here, the profile data |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 675 | // with missing address may be picked by the linker leading to missing |
Xinliang David Li | 6c44e9e | 2016-06-03 23:02:28 +0000 | [diff] [blame] | 676 | // indirect call target info. |
| 677 | return F->hasAddressTaken() || F->hasLinkOnceLinkage(); |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 678 | } |
| 679 | |
Xinliang David Li | 985ff20 | 2016-02-27 23:11:30 +0000 | [diff] [blame] | 680 | static inline Comdat *getOrCreateProfileComdat(Module &M, Function &F, |
Reid Kleckner | f21c022 | 2019-02-07 18:16:22 +0000 | [diff] [blame^] | 681 | InstrProfIncrementInst *Inc, |
| 682 | const Triple &TT) { |
Xinliang David Li | 985ff20 | 2016-02-27 23:11:30 +0000 | [diff] [blame] | 683 | if (!needsComdatForCounter(F, M)) |
| 684 | return nullptr; |
| 685 | |
Xinliang David Li | ab361ef | 2015-12-21 21:52:27 +0000 | [diff] [blame] | 686 | // COFF format requires a COMDAT section to have a key symbol with the same |
Vedant Kumar | 2d5b5d3 | 2016-02-03 23:22:43 +0000 | [diff] [blame] | 687 | // name. The linker targeting COFF also requires that the COMDAT |
Xinliang David Li | 5fe0455 | 2015-12-22 00:11:15 +0000 | [diff] [blame] | 688 | // a section is associated to must precede the associating section. For this |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 689 | // reason, we must choose the counter var's name as the name of the comdat. |
Reid Kleckner | f21c022 | 2019-02-07 18:16:22 +0000 | [diff] [blame^] | 690 | StringRef ComdatPrefix = |
| 691 | (TT.isOSBinFormatCOFF() ? getInstrProfCountersVarPrefix() |
| 692 | : getInstrProfComdatPrefix()); |
Xinliang David Li | ab361ef | 2015-12-21 21:52:27 +0000 | [diff] [blame] | 693 | return M.getOrInsertComdat(StringRef(getVarName(Inc, ComdatPrefix))); |
| 694 | } |
| 695 | |
Reid Kleckner | f21c022 | 2019-02-07 18:16:22 +0000 | [diff] [blame^] | 696 | static bool needsRuntimeRegistrationOfSectionRange(const Triple &TT) { |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 697 | // Don't do this for Darwin. compiler-rt uses linker magic. |
Reid Kleckner | f21c022 | 2019-02-07 18:16:22 +0000 | [diff] [blame^] | 698 | if (TT.isOSDarwin()) |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 699 | return false; |
| 700 | |
| 701 | // Use linker script magic to get data/cnts/name start/end. |
Reid Kleckner | f21c022 | 2019-02-07 18:16:22 +0000 | [diff] [blame^] | 702 | if (TT.isOSLinux() || TT.isOSFreeBSD() || TT.isOSNetBSD() || |
| 703 | TT.isOSFuchsia() || TT.isPS4CPU()) |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 704 | return false; |
| 705 | |
| 706 | return true; |
| 707 | } |
| 708 | |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 709 | GlobalVariable * |
| 710 | InstrProfiling::getOrCreateRegionCounters(InstrProfIncrementInst *Inc) { |
Xinliang David Li | 192c748 | 2015-11-05 00:47:26 +0000 | [diff] [blame] | 711 | GlobalVariable *NamePtr = Inc->getName(); |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 712 | auto It = ProfileDataMap.find(NamePtr); |
| 713 | PerFunctionProfileData PD; |
| 714 | if (It != ProfileDataMap.end()) { |
| 715 | if (It->second.RegionCounters) |
| 716 | return It->second.RegionCounters; |
| 717 | PD = It->second; |
| 718 | } |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 719 | |
Wei Mi | 3cc9204 | 2015-09-23 22:40:45 +0000 | [diff] [blame] | 720 | // Move the name variable to the right section. Place them in a COMDAT group |
| 721 | // if the associated function is a COMDAT. This will make sure that |
| 722 | // only one copy of counters of the COMDAT function will be emitted after |
| 723 | // linking. |
Diego Novillo | df4837b | 2015-05-27 19:34:01 +0000 | [diff] [blame] | 724 | Function *Fn = Inc->getParent()->getParent(); |
Wei Mi | 3cc9204 | 2015-09-23 22:40:45 +0000 | [diff] [blame] | 725 | Comdat *ProfileVarsComdat = nullptr; |
Reid Kleckner | f21c022 | 2019-02-07 18:16:22 +0000 | [diff] [blame^] | 726 | ProfileVarsComdat = getOrCreateProfileComdat(*M, *Fn, Inc, TT); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 727 | |
| 728 | uint64_t NumCounters = Inc->getNumCounters()->getZExtValue(); |
| 729 | LLVMContext &Ctx = M->getContext(); |
| 730 | ArrayType *CounterTy = ArrayType::get(Type::getInt64Ty(Ctx), NumCounters); |
| 731 | |
| 732 | // Create the counters variable. |
Xinliang David Li | 192c748 | 2015-11-05 00:47:26 +0000 | [diff] [blame] | 733 | auto *CounterPtr = |
| 734 | new GlobalVariable(*M, CounterTy, false, NamePtr->getLinkage(), |
Xinliang David Li | 83bc422 | 2015-10-22 20:32:12 +0000 | [diff] [blame] | 735 | Constant::getNullValue(CounterTy), |
| 736 | getVarName(Inc, getInstrProfCountersVarPrefix())); |
Xinliang David Li | 192c748 | 2015-11-05 00:47:26 +0000 | [diff] [blame] | 737 | CounterPtr->setVisibility(NamePtr->getVisibility()); |
Vedant Kumar | 1a6a2b6 | 2017-04-15 00:09:57 +0000 | [diff] [blame] | 738 | CounterPtr->setSection( |
| 739 | getInstrProfSectionName(IPSK_cnts, TT.getObjectFormat())); |
Xinliang David Li | 192c748 | 2015-11-05 00:47:26 +0000 | [diff] [blame] | 740 | CounterPtr->setAlignment(8); |
| 741 | CounterPtr->setComdat(ProfileVarsComdat); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 742 | |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 743 | auto *Int8PtrTy = Type::getInt8PtrTy(Ctx); |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 744 | // Allocate statically the array of pointers to value profile nodes for |
| 745 | // the current function. |
| 746 | Constant *ValuesPtrExpr = ConstantPointerNull::get(Int8PtrTy); |
Reid Kleckner | f21c022 | 2019-02-07 18:16:22 +0000 | [diff] [blame^] | 747 | if (ValueProfileStaticAlloc && !needsRuntimeRegistrationOfSectionRange(TT)) { |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 748 | uint64_t NS = 0; |
| 749 | for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind) |
| 750 | NS += PD.NumValueSites[Kind]; |
| 751 | if (NS) { |
| 752 | ArrayType *ValuesTy = ArrayType::get(Type::getInt64Ty(Ctx), NS); |
| 753 | |
| 754 | auto *ValuesVar = |
| 755 | new GlobalVariable(*M, ValuesTy, false, NamePtr->getLinkage(), |
| 756 | Constant::getNullValue(ValuesTy), |
| 757 | getVarName(Inc, getInstrProfValuesVarPrefix())); |
| 758 | ValuesVar->setVisibility(NamePtr->getVisibility()); |
Vedant Kumar | 1a6a2b6 | 2017-04-15 00:09:57 +0000 | [diff] [blame] | 759 | ValuesVar->setSection( |
| 760 | getInstrProfSectionName(IPSK_vals, TT.getObjectFormat())); |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 761 | ValuesVar->setAlignment(8); |
| 762 | ValuesVar->setComdat(ProfileVarsComdat); |
| 763 | ValuesPtrExpr = |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 764 | ConstantExpr::getBitCast(ValuesVar, Type::getInt8PtrTy(Ctx)); |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 765 | } |
| 766 | } |
| 767 | |
| 768 | // Create data variable. |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 769 | auto *Int16Ty = Type::getInt16Ty(Ctx); |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 770 | auto *Int16ArrayTy = ArrayType::get(Int16Ty, IPVK_Last + 1); |
Xinliang David Li | 192c748 | 2015-11-05 00:47:26 +0000 | [diff] [blame] | 771 | Type *DataTypes[] = { |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 772 | #define INSTR_PROF_DATA(Type, LLVMType, Name, Init) LLVMType, |
| 773 | #include "llvm/ProfileData/InstrProfData.inc" |
Xinliang David Li | 192c748 | 2015-11-05 00:47:26 +0000 | [diff] [blame] | 774 | }; |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 775 | auto *DataTy = StructType::get(Ctx, makeArrayRef(DataTypes)); |
Xinliang David Li | 192c748 | 2015-11-05 00:47:26 +0000 | [diff] [blame] | 776 | |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 777 | Constant *FunctionAddr = shouldRecordFunctionAddr(Fn) |
| 778 | ? ConstantExpr::getBitCast(Fn, Int8PtrTy) |
| 779 | : ConstantPointerNull::get(Int8PtrTy); |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 780 | |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 781 | Constant *Int16ArrayVals[IPVK_Last + 1]; |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 782 | for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind) |
| 783 | Int16ArrayVals[Kind] = ConstantInt::get(Int16Ty, PD.NumValueSites[Kind]); |
| 784 | |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 785 | Constant *DataVals[] = { |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 786 | #define INSTR_PROF_DATA(Type, LLVMType, Name, Init) Init, |
| 787 | #include "llvm/ProfileData/InstrProfData.inc" |
Xinliang David Li | 192c748 | 2015-11-05 00:47:26 +0000 | [diff] [blame] | 788 | }; |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 789 | auto *Data = new GlobalVariable(*M, DataTy, false, NamePtr->getLinkage(), |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 790 | ConstantStruct::get(DataTy, DataVals), |
Xinliang David Li | 83bc422 | 2015-10-22 20:32:12 +0000 | [diff] [blame] | 791 | getVarName(Inc, getInstrProfDataVarPrefix())); |
Xinliang David Li | 192c748 | 2015-11-05 00:47:26 +0000 | [diff] [blame] | 792 | Data->setVisibility(NamePtr->getVisibility()); |
Vedant Kumar | 1a6a2b6 | 2017-04-15 00:09:57 +0000 | [diff] [blame] | 793 | Data->setSection(getInstrProfSectionName(IPSK_data, TT.getObjectFormat())); |
Xinliang David Li | c7c1f85 | 2015-11-23 18:02:59 +0000 | [diff] [blame] | 794 | Data->setAlignment(INSTR_PROF_DATA_ALIGNMENT); |
Wei Mi | 3cc9204 | 2015-09-23 22:40:45 +0000 | [diff] [blame] | 795 | Data->setComdat(ProfileVarsComdat); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 796 | |
Betul Buyukkurt | 6fac174 | 2015-11-18 18:14:55 +0000 | [diff] [blame] | 797 | PD.RegionCounters = CounterPtr; |
| 798 | PD.DataVar = Data; |
| 799 | ProfileDataMap[NamePtr] = PD; |
| 800 | |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 801 | // Mark the data variable as used so that it isn't stripped out. |
| 802 | UsedVars.push_back(Data); |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 803 | // Now that the linkage set by the FE has been passed to the data and counter |
| 804 | // variables, reset Name variable's linkage and visibility to private so that |
| 805 | // it can be removed later by the compiler. |
| 806 | NamePtr->setLinkage(GlobalValue::PrivateLinkage); |
| 807 | // Collect the referenced names to be used by emitNameData. |
| 808 | ReferencedNames.push_back(NamePtr); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 809 | |
Xinliang David Li | 192c748 | 2015-11-05 00:47:26 +0000 | [diff] [blame] | 810 | return CounterPtr; |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 811 | } |
| 812 | |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 813 | void InstrProfiling::emitVNodes() { |
| 814 | if (!ValueProfileStaticAlloc) |
| 815 | return; |
Xinliang David Li | 8da773b | 2016-05-17 20:19:03 +0000 | [diff] [blame] | 816 | |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 817 | // For now only support this on platforms that do |
| 818 | // not require runtime registration to discover |
| 819 | // named section start/end. |
Reid Kleckner | f21c022 | 2019-02-07 18:16:22 +0000 | [diff] [blame^] | 820 | if (needsRuntimeRegistrationOfSectionRange(TT)) |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 821 | return; |
Xinliang David Li | 8da773b | 2016-05-17 20:19:03 +0000 | [diff] [blame] | 822 | |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 823 | size_t TotalNS = 0; |
| 824 | for (auto &PD : ProfileDataMap) { |
| 825 | for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind) |
| 826 | TotalNS += PD.second.NumValueSites[Kind]; |
| 827 | } |
| 828 | |
| 829 | if (!TotalNS) |
| 830 | return; |
| 831 | |
| 832 | uint64_t NumCounters = TotalNS * NumCountersPerValueSite; |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 833 | // Heuristic for small programs with very few total value sites. |
| 834 | // The default value of vp-counters-per-site is chosen based on |
| 835 | // the observation that large apps usually have a low percentage |
| 836 | // of value sites that actually have any profile data, and thus |
| 837 | // the average number of counters per site is low. For small |
| 838 | // apps with very few sites, this may not be true. Bump up the |
| 839 | // number of counters in this case. |
Xinliang David Li | e452076 | 2016-05-23 19:29:26 +0000 | [diff] [blame] | 840 | #define INSTR_PROF_MIN_VAL_COUNTS 10 |
| 841 | if (NumCounters < INSTR_PROF_MIN_VAL_COUNTS) |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 842 | NumCounters = std::max(INSTR_PROF_MIN_VAL_COUNTS, (int)NumCounters * 2); |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 843 | |
| 844 | auto &Ctx = M->getContext(); |
| 845 | Type *VNodeTypes[] = { |
| 846 | #define INSTR_PROF_VALUE_NODE(Type, LLVMType, Name, Init) LLVMType, |
| 847 | #include "llvm/ProfileData/InstrProfData.inc" |
| 848 | }; |
| 849 | auto *VNodeTy = StructType::get(Ctx, makeArrayRef(VNodeTypes)); |
| 850 | |
| 851 | ArrayType *VNodesTy = ArrayType::get(VNodeTy, NumCounters); |
| 852 | auto *VNodesVar = new GlobalVariable( |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 853 | *M, VNodesTy, false, GlobalValue::PrivateLinkage, |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 854 | Constant::getNullValue(VNodesTy), getInstrProfVNodesVarName()); |
Vedant Kumar | 1a6a2b6 | 2017-04-15 00:09:57 +0000 | [diff] [blame] | 855 | VNodesVar->setSection( |
| 856 | getInstrProfSectionName(IPSK_vnodes, TT.getObjectFormat())); |
Xinliang David Li | b628dd3 | 2016-05-21 22:55:34 +0000 | [diff] [blame] | 857 | UsedVars.push_back(VNodesVar); |
Xinliang David Li | 8da773b | 2016-05-17 20:19:03 +0000 | [diff] [blame] | 858 | } |
| 859 | |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 860 | void InstrProfiling::emitNameData() { |
| 861 | std::string UncompressedData; |
| 862 | |
| 863 | if (ReferencedNames.empty()) |
| 864 | return; |
| 865 | |
| 866 | std::string CompressedNameStr; |
Vedant Kumar | 9152fd1 | 2016-05-19 03:54:45 +0000 | [diff] [blame] | 867 | if (Error E = collectPGOFuncNameStrings(ReferencedNames, CompressedNameStr, |
Vedant Kumar | 43cba73 | 2016-05-03 16:53:17 +0000 | [diff] [blame] | 868 | DoNameCompression)) { |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 869 | report_fatal_error(toString(std::move(E)), false); |
Vedant Kumar | 43cba73 | 2016-05-03 16:53:17 +0000 | [diff] [blame] | 870 | } |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 871 | |
| 872 | auto &Ctx = M->getContext(); |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 873 | auto *NamesVal = ConstantDataArray::getString( |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 874 | Ctx, StringRef(CompressedNameStr), false); |
Eugene Zelenko | 34c2327 | 2017-01-18 00:57:48 +0000 | [diff] [blame] | 875 | NamesVar = new GlobalVariable(*M, NamesVal->getType(), true, |
| 876 | GlobalValue::PrivateLinkage, NamesVal, |
| 877 | getInstrProfNamesVarName()); |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 878 | NamesSize = CompressedNameStr.size(); |
Vedant Kumar | 1a6a2b6 | 2017-04-15 00:09:57 +0000 | [diff] [blame] | 879 | NamesVar->setSection( |
| 880 | getInstrProfSectionName(IPSK_name, TT.getObjectFormat())); |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 881 | UsedVars.push_back(NamesVar); |
Vedant Kumar | 55891fc | 2017-02-14 20:03:48 +0000 | [diff] [blame] | 882 | |
| 883 | for (auto *NamePtr : ReferencedNames) |
| 884 | NamePtr->eraseFromParent(); |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 885 | } |
| 886 | |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 887 | void InstrProfiling::emitRegistration() { |
Reid Kleckner | f21c022 | 2019-02-07 18:16:22 +0000 | [diff] [blame^] | 888 | if (!needsRuntimeRegistrationOfSectionRange(TT)) |
Xinliang David Li | aa0592c | 2015-10-19 04:17:10 +0000 | [diff] [blame] | 889 | return; |
Xinliang David Li | 3dd8817 | 2015-10-13 18:39:48 +0000 | [diff] [blame] | 890 | |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 891 | // Construct the function. |
| 892 | auto *VoidTy = Type::getVoidTy(M->getContext()); |
| 893 | auto *VoidPtrTy = Type::getInt8PtrTy(M->getContext()); |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 894 | auto *Int64Ty = Type::getInt64Ty(M->getContext()); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 895 | auto *RegisterFTy = FunctionType::get(VoidTy, false); |
| 896 | auto *RegisterF = Function::Create(RegisterFTy, GlobalValue::InternalLinkage, |
Xinliang David Li | 8ee08b0 | 2015-10-23 04:22:58 +0000 | [diff] [blame] | 897 | getInstrProfRegFuncsName(), M); |
Peter Collingbourne | 96efdd6 | 2016-06-14 21:01:22 +0000 | [diff] [blame] | 898 | RegisterF->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 899 | if (Options.NoRedZone) |
| 900 | RegisterF->addFnAttr(Attribute::NoRedZone); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 901 | |
Diego Novillo | b3029d2 | 2015-06-04 11:45:32 +0000 | [diff] [blame] | 902 | auto *RuntimeRegisterTy = FunctionType::get(VoidTy, VoidPtrTy, false); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 903 | auto *RuntimeRegisterF = |
| 904 | Function::Create(RuntimeRegisterTy, GlobalVariable::ExternalLinkage, |
Xinliang David Li | 8ee08b0 | 2015-10-23 04:22:58 +0000 | [diff] [blame] | 905 | getInstrProfRegFuncName(), M); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 906 | |
| 907 | IRBuilder<> IRB(BasicBlock::Create(M->getContext(), "", RegisterF)); |
| 908 | for (Value *Data : UsedVars) |
Reid Kleckner | ba82788 | 2018-07-27 22:21:35 +0000 | [diff] [blame] | 909 | if (Data != NamesVar && !isa<Function>(Data)) |
Xinliang David Li | a82d6c0 | 2016-02-08 18:13:49 +0000 | [diff] [blame] | 910 | IRB.CreateCall(RuntimeRegisterF, IRB.CreateBitCast(Data, VoidPtrTy)); |
| 911 | |
| 912 | if (NamesVar) { |
| 913 | Type *ParamTypes[] = {VoidPtrTy, Int64Ty}; |
| 914 | auto *NamesRegisterTy = |
| 915 | FunctionType::get(VoidTy, makeArrayRef(ParamTypes), false); |
| 916 | auto *NamesRegisterF = |
| 917 | Function::Create(NamesRegisterTy, GlobalVariable::ExternalLinkage, |
| 918 | getInstrProfNamesRegFuncName(), M); |
| 919 | IRB.CreateCall(NamesRegisterF, {IRB.CreateBitCast(NamesVar, VoidPtrTy), |
| 920 | IRB.getInt64(NamesSize)}); |
| 921 | } |
| 922 | |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 923 | IRB.CreateRetVoid(); |
| 924 | } |
| 925 | |
Vedant Kumar | 9a041a7 | 2018-02-28 19:00:08 +0000 | [diff] [blame] | 926 | bool InstrProfiling::emitRuntimeHook() { |
Xinliang David Li | 7a88ad6 | 2015-10-29 04:08:31 +0000 | [diff] [blame] | 927 | // We expect the linker to be invoked with -u<hook_var> flag for linux, |
| 928 | // for which case there is no need to emit the user function. |
Reid Kleckner | f21c022 | 2019-02-07 18:16:22 +0000 | [diff] [blame^] | 929 | if (TT.isOSLinux()) |
Vedant Kumar | 9a041a7 | 2018-02-28 19:00:08 +0000 | [diff] [blame] | 930 | return false; |
Xinliang David Li | 7a88ad6 | 2015-10-29 04:08:31 +0000 | [diff] [blame] | 931 | |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 932 | // If the module's provided its own runtime, we don't need to do anything. |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 933 | if (M->getGlobalVariable(getInstrProfRuntimeHookVarName())) |
Vedant Kumar | 9a041a7 | 2018-02-28 19:00:08 +0000 | [diff] [blame] | 934 | return false; |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 935 | |
| 936 | // Declare an external variable that will pull in the runtime initialization. |
| 937 | auto *Int32Ty = Type::getInt32Ty(M->getContext()); |
| 938 | auto *Var = |
| 939 | new GlobalVariable(*M, Int32Ty, false, GlobalValue::ExternalLinkage, |
Xinliang David Li | 8ee08b0 | 2015-10-23 04:22:58 +0000 | [diff] [blame] | 940 | nullptr, getInstrProfRuntimeHookVarName()); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 941 | |
| 942 | // Make a function that uses it. |
Xinliang David Li | 8ee08b0 | 2015-10-23 04:22:58 +0000 | [diff] [blame] | 943 | auto *User = Function::Create(FunctionType::get(Int32Ty, false), |
| 944 | GlobalValue::LinkOnceODRLinkage, |
| 945 | getInstrProfRuntimeHookVarUseFuncName(), M); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 946 | User->addFnAttr(Attribute::NoInline); |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 947 | if (Options.NoRedZone) |
| 948 | User->addFnAttr(Attribute::NoRedZone); |
Justin Bogner | 2e427d4 | 2015-02-25 22:52:20 +0000 | [diff] [blame] | 949 | User->setVisibility(GlobalValue::HiddenVisibility); |
Reid Kleckner | f21c022 | 2019-02-07 18:16:22 +0000 | [diff] [blame^] | 950 | if (TT.supportsCOMDAT()) |
Xinliang David Li | f4edae6 | 2016-05-24 18:47:38 +0000 | [diff] [blame] | 951 | User->setComdat(M->getOrInsertComdat(User->getName())); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 952 | |
| 953 | IRBuilder<> IRB(BasicBlock::Create(M->getContext(), "", User)); |
James Y Knight | 14359ef | 2019-02-01 20:44:24 +0000 | [diff] [blame] | 954 | auto *Load = IRB.CreateLoad(Int32Ty, Var); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 955 | IRB.CreateRet(Load); |
| 956 | |
| 957 | // Mark the user variable as used so that it isn't stripped out. |
| 958 | UsedVars.push_back(User); |
Vedant Kumar | 9a041a7 | 2018-02-28 19:00:08 +0000 | [diff] [blame] | 959 | return true; |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | void InstrProfiling::emitUses() { |
Evgeniy Stepanov | ea6d49d | 2016-10-25 23:53:31 +0000 | [diff] [blame] | 963 | if (!UsedVars.empty()) |
| 964 | appendToUsed(*M, UsedVars); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 965 | } |
| 966 | |
| 967 | void InstrProfiling::emitInitialization() { |
Rong Xu | ce10d5e | 2019-02-05 22:34:45 +0000 | [diff] [blame] | 968 | // Create variable for profile name. |
| 969 | createProfileFileNameVar(*M, Options.InstrProfileOutput); |
James Y Knight | 7976eb5 | 2019-02-01 20:43:25 +0000 | [diff] [blame] | 970 | Function *RegisterF = M->getFunction(getInstrProfRegFuncsName()); |
Xinliang David Li | 6f8c504 | 2016-07-21 23:19:10 +0000 | [diff] [blame] | 971 | if (!RegisterF) |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 972 | return; |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 973 | |
| 974 | // Create the initialization function. |
| 975 | auto *VoidTy = Type::getVoidTy(M->getContext()); |
Xinliang David Li | 8ee08b0 | 2015-10-23 04:22:58 +0000 | [diff] [blame] | 976 | auto *F = Function::Create(FunctionType::get(VoidTy, false), |
| 977 | GlobalValue::InternalLinkage, |
| 978 | getInstrProfInitFuncName(), M); |
Peter Collingbourne | 96efdd6 | 2016-06-14 21:01:22 +0000 | [diff] [blame] | 979 | F->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 980 | F->addFnAttr(Attribute::NoInline); |
Xinliang David Li | 69a00f0 | 2016-06-21 02:39:08 +0000 | [diff] [blame] | 981 | if (Options.NoRedZone) |
| 982 | F->addFnAttr(Attribute::NoRedZone); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 983 | |
| 984 | // Add the basic block and the necessary calls. |
| 985 | IRBuilder<> IRB(BasicBlock::Create(M->getContext(), "", F)); |
James Y Knight | 7976eb5 | 2019-02-01 20:43:25 +0000 | [diff] [blame] | 986 | IRB.CreateCall(RegisterF, {}); |
Justin Bogner | 61ba2e3 | 2014-12-08 18:02:35 +0000 | [diff] [blame] | 987 | IRB.CreateRetVoid(); |
| 988 | |
| 989 | appendToGlobalCtors(*M, F, 0); |
| 990 | } |