LLVM 19.0.0git
SanitizerCoverage.cpp
Go to the documentation of this file.
1//===-- SanitizerCoverage.cpp - coverage instrumentation for sanitizers ---===//
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// Coverage instrumentation done on LLVM IR level, works with Sanitizers.
10//
11//===----------------------------------------------------------------------===//
12
14#include "llvm/ADT/ArrayRef.h"
18#include "llvm/IR/Constant.h"
19#include "llvm/IR/DataLayout.h"
20#include "llvm/IR/Dominators.h"
22#include "llvm/IR/Function.h"
24#include "llvm/IR/IRBuilder.h"
26#include "llvm/IR/Intrinsics.h"
27#include "llvm/IR/LLVMContext.h"
28#include "llvm/IR/Module.h"
29#include "llvm/IR/Type.h"
36
37using namespace llvm;
38
39#define DEBUG_TYPE "sancov"
40
41const char SanCovTracePCIndirName[] = "__sanitizer_cov_trace_pc_indir";
42const char SanCovTracePCName[] = "__sanitizer_cov_trace_pc";
43const char SanCovTraceCmp1[] = "__sanitizer_cov_trace_cmp1";
44const char SanCovTraceCmp2[] = "__sanitizer_cov_trace_cmp2";
45const char SanCovTraceCmp4[] = "__sanitizer_cov_trace_cmp4";
46const char SanCovTraceCmp8[] = "__sanitizer_cov_trace_cmp8";
47const char SanCovTraceConstCmp1[] = "__sanitizer_cov_trace_const_cmp1";
48const char SanCovTraceConstCmp2[] = "__sanitizer_cov_trace_const_cmp2";
49const char SanCovTraceConstCmp4[] = "__sanitizer_cov_trace_const_cmp4";
50const char SanCovTraceConstCmp8[] = "__sanitizer_cov_trace_const_cmp8";
51const char SanCovLoad1[] = "__sanitizer_cov_load1";
52const char SanCovLoad2[] = "__sanitizer_cov_load2";
53const char SanCovLoad4[] = "__sanitizer_cov_load4";
54const char SanCovLoad8[] = "__sanitizer_cov_load8";
55const char SanCovLoad16[] = "__sanitizer_cov_load16";
56const char SanCovStore1[] = "__sanitizer_cov_store1";
57const char SanCovStore2[] = "__sanitizer_cov_store2";
58const char SanCovStore4[] = "__sanitizer_cov_store4";
59const char SanCovStore8[] = "__sanitizer_cov_store8";
60const char SanCovStore16[] = "__sanitizer_cov_store16";
61const char SanCovTraceDiv4[] = "__sanitizer_cov_trace_div4";
62const char SanCovTraceDiv8[] = "__sanitizer_cov_trace_div8";
63const char SanCovTraceGep[] = "__sanitizer_cov_trace_gep";
64const char SanCovTraceSwitchName[] = "__sanitizer_cov_trace_switch";
66 "sancov.module_ctor_trace_pc_guard";
68 "sancov.module_ctor_8bit_counters";
69const char SanCovModuleCtorBoolFlagName[] = "sancov.module_ctor_bool_flag";
71
72const char SanCovTracePCGuardName[] = "__sanitizer_cov_trace_pc_guard";
73const char SanCovTracePCGuardInitName[] = "__sanitizer_cov_trace_pc_guard_init";
74const char SanCov8bitCountersInitName[] = "__sanitizer_cov_8bit_counters_init";
75const char SanCovBoolFlagInitName[] = "__sanitizer_cov_bool_flag_init";
76const char SanCovPCsInitName[] = "__sanitizer_cov_pcs_init";
77const char SanCovCFsInitName[] = "__sanitizer_cov_cfs_init";
78
79const char SanCovGuardsSectionName[] = "sancov_guards";
80const char SanCovCountersSectionName[] = "sancov_cntrs";
81const char SanCovBoolFlagSectionName[] = "sancov_bools";
82const char SanCovPCsSectionName[] = "sancov_pcs";
83const char SanCovCFsSectionName[] = "sancov_cfs";
84
85const char SanCovLowestStackName[] = "__sancov_lowest_stack";
86
88 "sanitizer-coverage-level",
89 cl::desc("Sanitizer Coverage. 0: none, 1: entry block, 2: all blocks, "
90 "3: all blocks and critical edges"),
92
93static cl::opt<bool> ClTracePC("sanitizer-coverage-trace-pc",
94 cl::desc("Experimental pc tracing"), cl::Hidden,
95 cl::init(false));
96
97static cl::opt<bool> ClTracePCGuard("sanitizer-coverage-trace-pc-guard",
98 cl::desc("pc tracing with a guard"),
99 cl::Hidden, cl::init(false));
100
101// If true, we create a global variable that contains PCs of all instrumented
102// BBs, put this global into a named section, and pass this section's bounds
103// to __sanitizer_cov_pcs_init.
104// This way the coverage instrumentation does not need to acquire the PCs
105// at run-time. Works with trace-pc-guard, inline-8bit-counters, and
106// inline-bool-flag.
107static cl::opt<bool> ClCreatePCTable("sanitizer-coverage-pc-table",
108 cl::desc("create a static PC table"),
109 cl::Hidden, cl::init(false));
110
111static cl::opt<bool>
112 ClInline8bitCounters("sanitizer-coverage-inline-8bit-counters",
113 cl::desc("increments 8-bit counter for every edge"),
114 cl::Hidden, cl::init(false));
115
116static cl::opt<bool>
117 ClInlineBoolFlag("sanitizer-coverage-inline-bool-flag",
118 cl::desc("sets a boolean flag for every edge"), cl::Hidden,
119 cl::init(false));
120
121static cl::opt<bool>
122 ClCMPTracing("sanitizer-coverage-trace-compares",
123 cl::desc("Tracing of CMP and similar instructions"),
124 cl::Hidden, cl::init(false));
125
126static cl::opt<bool> ClDIVTracing("sanitizer-coverage-trace-divs",
127 cl::desc("Tracing of DIV instructions"),
128 cl::Hidden, cl::init(false));
129
130static cl::opt<bool> ClLoadTracing("sanitizer-coverage-trace-loads",
131 cl::desc("Tracing of load instructions"),
132 cl::Hidden, cl::init(false));
133
134static cl::opt<bool> ClStoreTracing("sanitizer-coverage-trace-stores",
135 cl::desc("Tracing of store instructions"),
136 cl::Hidden, cl::init(false));
137
138static cl::opt<bool> ClGEPTracing("sanitizer-coverage-trace-geps",
139 cl::desc("Tracing of GEP instructions"),
140 cl::Hidden, cl::init(false));
141
142static cl::opt<bool>
143 ClPruneBlocks("sanitizer-coverage-prune-blocks",
144 cl::desc("Reduce the number of instrumented blocks"),
145 cl::Hidden, cl::init(true));
146
147static cl::opt<bool> ClStackDepth("sanitizer-coverage-stack-depth",
148 cl::desc("max stack depth tracing"),
149 cl::Hidden, cl::init(false));
150
151static cl::opt<bool>
152 ClCollectCF("sanitizer-coverage-control-flow",
153 cl::desc("collect control flow for each function"), cl::Hidden,
154 cl::init(false));
155
156namespace {
157
158SanitizerCoverageOptions getOptions(int LegacyCoverageLevel) {
160 switch (LegacyCoverageLevel) {
161 case 0:
163 break;
164 case 1:
166 break;
167 case 2:
169 break;
170 case 3:
172 break;
173 case 4:
175 Res.IndirectCalls = true;
176 break;
177 }
178 return Res;
179}
180
182 // Sets CoverageType and IndirectCalls.
183 SanitizerCoverageOptions CLOpts = getOptions(ClCoverageLevel);
184 Options.CoverageType = std::max(Options.CoverageType, CLOpts.CoverageType);
185 Options.IndirectCalls |= CLOpts.IndirectCalls;
186 Options.TraceCmp |= ClCMPTracing;
187 Options.TraceDiv |= ClDIVTracing;
188 Options.TraceGep |= ClGEPTracing;
189 Options.TracePC |= ClTracePC;
190 Options.TracePCGuard |= ClTracePCGuard;
191 Options.Inline8bitCounters |= ClInline8bitCounters;
192 Options.InlineBoolFlag |= ClInlineBoolFlag;
193 Options.PCTable |= ClCreatePCTable;
194 Options.NoPrune |= !ClPruneBlocks;
195 Options.StackDepth |= ClStackDepth;
196 Options.TraceLoads |= ClLoadTracing;
197 Options.TraceStores |= ClStoreTracing;
198 if (!Options.TracePCGuard && !Options.TracePC &&
199 !Options.Inline8bitCounters && !Options.StackDepth &&
200 !Options.InlineBoolFlag && !Options.TraceLoads && !Options.TraceStores)
201 Options.TracePCGuard = true; // TracePCGuard is default.
202 Options.CollectControlFlow |= ClCollectCF;
203 return Options;
204}
205
206using DomTreeCallback = function_ref<const DominatorTree *(Function &F)>;
207using PostDomTreeCallback =
209
210class ModuleSanitizerCoverage {
211public:
212 ModuleSanitizerCoverage(
214 const SpecialCaseList *Allowlist = nullptr,
215 const SpecialCaseList *Blocklist = nullptr)
216 : Options(OverrideFromCL(Options)), Allowlist(Allowlist),
217 Blocklist(Blocklist) {}
218 bool instrumentModule(Module &M, DomTreeCallback DTCallback,
219 PostDomTreeCallback PDTCallback);
220
221private:
222 void createFunctionControlFlow(Function &F);
223 void instrumentFunction(Function &F, DomTreeCallback DTCallback,
224 PostDomTreeCallback PDTCallback);
225 void InjectCoverageForIndirectCalls(Function &F,
226 ArrayRef<Instruction *> IndirCalls);
227 void InjectTraceForCmp(Function &F, ArrayRef<Instruction *> CmpTraceTargets);
228 void InjectTraceForDiv(Function &F,
229 ArrayRef<BinaryOperator *> DivTraceTargets);
230 void InjectTraceForGep(Function &F,
231 ArrayRef<GetElementPtrInst *> GepTraceTargets);
232 void InjectTraceForLoadsAndStores(Function &F, ArrayRef<LoadInst *> Loads,
233 ArrayRef<StoreInst *> Stores);
234 void InjectTraceForSwitch(Function &F,
235 ArrayRef<Instruction *> SwitchTraceTargets);
236 bool InjectCoverage(Function &F, ArrayRef<BasicBlock *> AllBlocks,
237 bool IsLeafFunc = true);
238 GlobalVariable *CreateFunctionLocalArrayInSection(size_t NumElements,
239 Function &F, Type *Ty,
240 const char *Section);
241 GlobalVariable *CreatePCArray(Function &F, ArrayRef<BasicBlock *> AllBlocks);
242 void CreateFunctionLocalArrays(Function &F, ArrayRef<BasicBlock *> AllBlocks);
243 void InjectCoverageAtBlock(Function &F, BasicBlock &BB, size_t Idx,
244 bool IsLeafFunc = true);
245 Function *CreateInitCallsForSections(Module &M, const char *CtorName,
246 const char *InitFunctionName, Type *Ty,
247 const char *Section);
248 std::pair<Value *, Value *> CreateSecStartEnd(Module &M, const char *Section,
249 Type *Ty);
250
251 std::string getSectionName(const std::string &Section) const;
252 std::string getSectionStart(const std::string &Section) const;
253 std::string getSectionEnd(const std::string &Section) const;
254 FunctionCallee SanCovTracePCIndir;
255 FunctionCallee SanCovTracePC, SanCovTracePCGuard;
256 std::array<FunctionCallee, 4> SanCovTraceCmpFunction;
257 std::array<FunctionCallee, 4> SanCovTraceConstCmpFunction;
258 std::array<FunctionCallee, 5> SanCovLoadFunction;
259 std::array<FunctionCallee, 5> SanCovStoreFunction;
260 std::array<FunctionCallee, 2> SanCovTraceDivFunction;
261 FunctionCallee SanCovTraceGepFunction;
262 FunctionCallee SanCovTraceSwitchFunction;
263 GlobalVariable *SanCovLowestStack;
264 Type *PtrTy, *IntptrTy, *Int64Ty, *Int32Ty, *Int16Ty, *Int8Ty, *Int1Ty;
265 Module *CurModule;
266 std::string CurModuleUniqueId;
267 Triple TargetTriple;
268 LLVMContext *C;
269 const DataLayout *DL;
270
271 GlobalVariable *FunctionGuardArray; // for trace-pc-guard.
272 GlobalVariable *Function8bitCounterArray; // for inline-8bit-counters.
273 GlobalVariable *FunctionBoolArray; // for inline-bool-flag.
274 GlobalVariable *FunctionPCsArray; // for pc-table.
275 GlobalVariable *FunctionCFsArray; // for control flow table
276 SmallVector<GlobalValue *, 20> GlobalsToAppendToUsed;
277 SmallVector<GlobalValue *, 20> GlobalsToAppendToCompilerUsed;
278
280
281 const SpecialCaseList *Allowlist;
282 const SpecialCaseList *Blocklist;
283};
284} // namespace
285
288 ModuleSanitizerCoverage ModuleSancov(Options, Allowlist.get(),
289 Blocklist.get());
290 auto &FAM = MAM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
291 auto DTCallback = [&FAM](Function &F) -> const DominatorTree * {
293 };
294 auto PDTCallback = [&FAM](Function &F) -> const PostDominatorTree * {
296 };
297 if (!ModuleSancov.instrumentModule(M, DTCallback, PDTCallback))
298 return PreservedAnalyses::all();
299
301 // GlobalsAA is considered stateless and does not get invalidated unless
302 // explicitly invalidated; PreservedAnalyses::none() is not enough. Sanitizers
303 // make changes that require GlobalsAA to be invalidated.
304 PA.abandon<GlobalsAA>();
305 return PA;
306}
307
308std::pair<Value *, Value *>
309ModuleSanitizerCoverage::CreateSecStartEnd(Module &M, const char *Section,
310 Type *Ty) {
311 // Use ExternalWeak so that if all sections are discarded due to section
312 // garbage collection, the linker will not report undefined symbol errors.
313 // Windows defines the start/stop symbols in compiler-rt so no need for
314 // ExternalWeak.
315 GlobalValue::LinkageTypes Linkage = TargetTriple.isOSBinFormatCOFF()
318 GlobalVariable *SecStart =
319 new GlobalVariable(M, Ty, false, Linkage, nullptr,
320 getSectionStart(Section));
322 GlobalVariable *SecEnd =
323 new GlobalVariable(M, Ty, false, Linkage, nullptr,
324 getSectionEnd(Section));
326 IRBuilder<> IRB(M.getContext());
327 if (!TargetTriple.isOSBinFormatCOFF())
328 return std::make_pair(SecStart, SecEnd);
329
330 // Account for the fact that on windows-msvc __start_* symbols actually
331 // point to a uint64_t before the start of the array.
332 auto GEP =
333 IRB.CreatePtrAdd(SecStart, ConstantInt::get(IntptrTy, sizeof(uint64_t)));
334 return std::make_pair(GEP, SecEnd);
335}
336
337Function *ModuleSanitizerCoverage::CreateInitCallsForSections(
338 Module &M, const char *CtorName, const char *InitFunctionName, Type *Ty,
339 const char *Section) {
340 auto SecStartEnd = CreateSecStartEnd(M, Section, Ty);
341 auto SecStart = SecStartEnd.first;
342 auto SecEnd = SecStartEnd.second;
343 Function *CtorFunc;
344 std::tie(CtorFunc, std::ignore) = createSanitizerCtorAndInitFunctions(
345 M, CtorName, InitFunctionName, {PtrTy, PtrTy}, {SecStart, SecEnd});
346 assert(CtorFunc->getName() == CtorName);
347
348 if (TargetTriple.supportsCOMDAT()) {
349 // Use comdat to dedup CtorFunc.
350 CtorFunc->setComdat(M.getOrInsertComdat(CtorName));
351 appendToGlobalCtors(M, CtorFunc, SanCtorAndDtorPriority, CtorFunc);
352 } else {
354 }
355
356 if (TargetTriple.isOSBinFormatCOFF()) {
357 // In COFF files, if the contructors are set as COMDAT (they are because
358 // COFF supports COMDAT) and the linker flag /OPT:REF (strip unreferenced
359 // functions and data) is used, the constructors get stripped. To prevent
360 // this, give the constructors weak ODR linkage and ensure the linker knows
361 // to include the sancov constructor. This way the linker can deduplicate
362 // the constructors but always leave one copy.
364 }
365 return CtorFunc;
366}
367
368bool ModuleSanitizerCoverage::instrumentModule(
369 Module &M, DomTreeCallback DTCallback, PostDomTreeCallback PDTCallback) {
371 return false;
372 if (Allowlist &&
373 !Allowlist->inSection("coverage", "src", M.getSourceFileName()))
374 return false;
375 if (Blocklist &&
376 Blocklist->inSection("coverage", "src", M.getSourceFileName()))
377 return false;
378 C = &(M.getContext());
379 DL = &M.getDataLayout();
380 CurModule = &M;
381 CurModuleUniqueId = getUniqueModuleId(CurModule);
382 TargetTriple = Triple(M.getTargetTriple());
383 FunctionGuardArray = nullptr;
384 Function8bitCounterArray = nullptr;
385 FunctionBoolArray = nullptr;
386 FunctionPCsArray = nullptr;
387 FunctionCFsArray = nullptr;
388 IntptrTy = Type::getIntNTy(*C, DL->getPointerSizeInBits());
389 PtrTy = PointerType::getUnqual(*C);
390 Type *VoidTy = Type::getVoidTy(*C);
391 IRBuilder<> IRB(*C);
392 Int64Ty = IRB.getInt64Ty();
393 Int32Ty = IRB.getInt32Ty();
394 Int16Ty = IRB.getInt16Ty();
395 Int8Ty = IRB.getInt8Ty();
396 Int1Ty = IRB.getInt1Ty();
397
398 SanCovTracePCIndir =
399 M.getOrInsertFunction(SanCovTracePCIndirName, VoidTy, IntptrTy);
400 // Make sure smaller parameters are zero-extended to i64 if required by the
401 // target ABI.
402 AttributeList SanCovTraceCmpZeroExtAL;
403 SanCovTraceCmpZeroExtAL =
404 SanCovTraceCmpZeroExtAL.addParamAttribute(*C, 0, Attribute::ZExt);
405 SanCovTraceCmpZeroExtAL =
406 SanCovTraceCmpZeroExtAL.addParamAttribute(*C, 1, Attribute::ZExt);
407
408 SanCovTraceCmpFunction[0] =
409 M.getOrInsertFunction(SanCovTraceCmp1, SanCovTraceCmpZeroExtAL, VoidTy,
410 IRB.getInt8Ty(), IRB.getInt8Ty());
411 SanCovTraceCmpFunction[1] =
412 M.getOrInsertFunction(SanCovTraceCmp2, SanCovTraceCmpZeroExtAL, VoidTy,
413 IRB.getInt16Ty(), IRB.getInt16Ty());
414 SanCovTraceCmpFunction[2] =
415 M.getOrInsertFunction(SanCovTraceCmp4, SanCovTraceCmpZeroExtAL, VoidTy,
416 IRB.getInt32Ty(), IRB.getInt32Ty());
417 SanCovTraceCmpFunction[3] =
418 M.getOrInsertFunction(SanCovTraceCmp8, VoidTy, Int64Ty, Int64Ty);
419
420 SanCovTraceConstCmpFunction[0] = M.getOrInsertFunction(
421 SanCovTraceConstCmp1, SanCovTraceCmpZeroExtAL, VoidTy, Int8Ty, Int8Ty);
422 SanCovTraceConstCmpFunction[1] = M.getOrInsertFunction(
423 SanCovTraceConstCmp2, SanCovTraceCmpZeroExtAL, VoidTy, Int16Ty, Int16Ty);
424 SanCovTraceConstCmpFunction[2] = M.getOrInsertFunction(
425 SanCovTraceConstCmp4, SanCovTraceCmpZeroExtAL, VoidTy, Int32Ty, Int32Ty);
426 SanCovTraceConstCmpFunction[3] =
427 M.getOrInsertFunction(SanCovTraceConstCmp8, VoidTy, Int64Ty, Int64Ty);
428
429 // Loads.
430 SanCovLoadFunction[0] = M.getOrInsertFunction(SanCovLoad1, VoidTy, PtrTy);
431 SanCovLoadFunction[1] =
432 M.getOrInsertFunction(SanCovLoad2, VoidTy, PtrTy);
433 SanCovLoadFunction[2] =
434 M.getOrInsertFunction(SanCovLoad4, VoidTy, PtrTy);
435 SanCovLoadFunction[3] =
436 M.getOrInsertFunction(SanCovLoad8, VoidTy, PtrTy);
437 SanCovLoadFunction[4] =
438 M.getOrInsertFunction(SanCovLoad16, VoidTy, PtrTy);
439 // Stores.
440 SanCovStoreFunction[0] =
441 M.getOrInsertFunction(SanCovStore1, VoidTy, PtrTy);
442 SanCovStoreFunction[1] =
443 M.getOrInsertFunction(SanCovStore2, VoidTy, PtrTy);
444 SanCovStoreFunction[2] =
445 M.getOrInsertFunction(SanCovStore4, VoidTy, PtrTy);
446 SanCovStoreFunction[3] =
447 M.getOrInsertFunction(SanCovStore8, VoidTy, PtrTy);
448 SanCovStoreFunction[4] =
449 M.getOrInsertFunction(SanCovStore16, VoidTy, PtrTy);
450
451 {
453 AL = AL.addParamAttribute(*C, 0, Attribute::ZExt);
454 SanCovTraceDivFunction[0] =
455 M.getOrInsertFunction(SanCovTraceDiv4, AL, VoidTy, IRB.getInt32Ty());
456 }
457 SanCovTraceDivFunction[1] =
458 M.getOrInsertFunction(SanCovTraceDiv8, VoidTy, Int64Ty);
459 SanCovTraceGepFunction =
460 M.getOrInsertFunction(SanCovTraceGep, VoidTy, IntptrTy);
461 SanCovTraceSwitchFunction =
462 M.getOrInsertFunction(SanCovTraceSwitchName, VoidTy, Int64Ty, PtrTy);
463
464 Constant *SanCovLowestStackConstant =
465 M.getOrInsertGlobal(SanCovLowestStackName, IntptrTy);
466 SanCovLowestStack = dyn_cast<GlobalVariable>(SanCovLowestStackConstant);
467 if (!SanCovLowestStack || SanCovLowestStack->getValueType() != IntptrTy) {
468 C->emitError(StringRef("'") + SanCovLowestStackName +
469 "' should not be declared by the user");
470 return true;
471 }
472 SanCovLowestStack->setThreadLocalMode(
474 if (Options.StackDepth && !SanCovLowestStack->isDeclaration())
475 SanCovLowestStack->setInitializer(Constant::getAllOnesValue(IntptrTy));
476
477 SanCovTracePC = M.getOrInsertFunction(SanCovTracePCName, VoidTy);
478 SanCovTracePCGuard =
479 M.getOrInsertFunction(SanCovTracePCGuardName, VoidTy, PtrTy);
480
481 for (auto &F : M)
482 instrumentFunction(F, DTCallback, PDTCallback);
483
484 Function *Ctor = nullptr;
485
486 if (FunctionGuardArray)
487 Ctor = CreateInitCallsForSections(M, SanCovModuleCtorTracePcGuardName,
490 if (Function8bitCounterArray)
491 Ctor = CreateInitCallsForSections(M, SanCovModuleCtor8bitCountersName,
494 if (FunctionBoolArray) {
495 Ctor = CreateInitCallsForSections(M, SanCovModuleCtorBoolFlagName,
498 }
499 if (Ctor && Options.PCTable) {
500 auto SecStartEnd = CreateSecStartEnd(M, SanCovPCsSectionName, IntptrTy);
502 M, SanCovPCsInitName, {PtrTy, PtrTy});
503 IRBuilder<> IRBCtor(Ctor->getEntryBlock().getTerminator());
504 IRBCtor.CreateCall(InitFunction, {SecStartEnd.first, SecStartEnd.second});
505 }
506
507 if (Ctor && Options.CollectControlFlow) {
508 auto SecStartEnd = CreateSecStartEnd(M, SanCovCFsSectionName, IntptrTy);
510 M, SanCovCFsInitName, {PtrTy, PtrTy});
511 IRBuilder<> IRBCtor(Ctor->getEntryBlock().getTerminator());
512 IRBCtor.CreateCall(InitFunction, {SecStartEnd.first, SecStartEnd.second});
513 }
514
515 appendToUsed(M, GlobalsToAppendToUsed);
516 appendToCompilerUsed(M, GlobalsToAppendToCompilerUsed);
517 return true;
518}
519
520// True if block has successors and it dominates all of them.
521static bool isFullDominator(const BasicBlock *BB, const DominatorTree *DT) {
522 if (succ_empty(BB))
523 return false;
524
525 return llvm::all_of(successors(BB), [&](const BasicBlock *SUCC) {
526 return DT->dominates(BB, SUCC);
527 });
528}
529
530// True if block has predecessors and it postdominates all of them.
531static bool isFullPostDominator(const BasicBlock *BB,
532 const PostDominatorTree *PDT) {
533 if (pred_empty(BB))
534 return false;
535
536 return llvm::all_of(predecessors(BB), [&](const BasicBlock *PRED) {
537 return PDT->dominates(BB, PRED);
538 });
539}
540
541static bool shouldInstrumentBlock(const Function &F, const BasicBlock *BB,
542 const DominatorTree *DT,
543 const PostDominatorTree *PDT,
545 // Don't insert coverage for blocks containing nothing but unreachable: we
546 // will never call __sanitizer_cov() for them, so counting them in
547 // NumberOfInstrumentedBlocks() might complicate calculation of code coverage
548 // percentage. Also, unreachable instructions frequently have no debug
549 // locations.
550 if (isa<UnreachableInst>(BB->getFirstNonPHIOrDbgOrLifetime()))
551 return false;
552
553 // Don't insert coverage into blocks without a valid insertion point
554 // (catchswitch blocks).
555 if (BB->getFirstInsertionPt() == BB->end())
556 return false;
557
558 if (Options.NoPrune || &F.getEntryBlock() == BB)
559 return true;
560
562 &F.getEntryBlock() != BB)
563 return false;
564
565 // Do not instrument full dominators, or full post-dominators with multiple
566 // predecessors.
567 return !isFullDominator(BB, DT)
568 && !(isFullPostDominator(BB, PDT) && !BB->getSinglePredecessor());
569}
570
571
572// Returns true iff From->To is a backedge.
573// A twist here is that we treat From->To as a backedge if
574// * To dominates From or
575// * To->UniqueSuccessor dominates From
577 const DominatorTree *DT) {
578 if (DT->dominates(To, From))
579 return true;
580 if (auto Next = To->getUniqueSuccessor())
581 if (DT->dominates(Next, From))
582 return true;
583 return false;
584}
585
586// Prunes uninteresting Cmp instrumentation:
587// * CMP instructions that feed into loop backedge branch.
588//
589// Note that Cmp pruning is controlled by the same flag as the
590// BB pruning.
591static bool IsInterestingCmp(ICmpInst *CMP, const DominatorTree *DT,
593 if (!Options.NoPrune)
594 if (CMP->hasOneUse())
595 if (auto BR = dyn_cast<BranchInst>(CMP->user_back()))
596 for (BasicBlock *B : BR->successors())
597 if (IsBackEdge(BR->getParent(), B, DT))
598 return false;
599 return true;
600}
601
602void ModuleSanitizerCoverage::instrumentFunction(
603 Function &F, DomTreeCallback DTCallback, PostDomTreeCallback PDTCallback) {
604 if (F.empty())
605 return;
606 if (F.getName().contains(".module_ctor"))
607 return; // Should not instrument sanitizer init functions.
608 if (F.getName().starts_with("__sanitizer_"))
609 return; // Don't instrument __sanitizer_* callbacks.
610 // Don't touch available_externally functions, their actual body is elewhere.
611 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage)
612 return;
613 // Don't instrument MSVC CRT configuration helpers. They may run before normal
614 // initialization.
615 if (F.getName() == "__local_stdio_printf_options" ||
616 F.getName() == "__local_stdio_scanf_options")
617 return;
618 if (isa<UnreachableInst>(F.getEntryBlock().getTerminator()))
619 return;
620 // Don't instrument functions using SEH for now. Splitting basic blocks like
621 // we do for coverage breaks WinEHPrepare.
622 // FIXME: Remove this when SEH no longer uses landingpad pattern matching.
623 if (F.hasPersonalityFn() &&
625 return;
626 if (Allowlist && !Allowlist->inSection("coverage", "fun", F.getName()))
627 return;
628 if (Blocklist && Blocklist->inSection("coverage", "fun", F.getName()))
629 return;
630 if (F.hasFnAttribute(Attribute::NoSanitizeCoverage))
631 return;
633 SplitAllCriticalEdges(F, CriticalEdgeSplittingOptions().setIgnoreUnreachableDests());
635 SmallVector<BasicBlock *, 16> BlocksToInstrument;
636 SmallVector<Instruction *, 8> CmpTraceTargets;
637 SmallVector<Instruction *, 8> SwitchTraceTargets;
638 SmallVector<BinaryOperator *, 8> DivTraceTargets;
642
643 const DominatorTree *DT = DTCallback(F);
644 const PostDominatorTree *PDT = PDTCallback(F);
645 bool IsLeafFunc = true;
646
647 for (auto &BB : F) {
648 if (shouldInstrumentBlock(F, &BB, DT, PDT, Options))
649 BlocksToInstrument.push_back(&BB);
650 for (auto &Inst : BB) {
651 if (Options.IndirectCalls) {
652 CallBase *CB = dyn_cast<CallBase>(&Inst);
653 if (CB && CB->isIndirectCall())
654 IndirCalls.push_back(&Inst);
655 }
656 if (Options.TraceCmp) {
657 if (ICmpInst *CMP = dyn_cast<ICmpInst>(&Inst))
658 if (IsInterestingCmp(CMP, DT, Options))
659 CmpTraceTargets.push_back(&Inst);
660 if (isa<SwitchInst>(&Inst))
661 SwitchTraceTargets.push_back(&Inst);
662 }
663 if (Options.TraceDiv)
664 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(&Inst))
665 if (BO->getOpcode() == Instruction::SDiv ||
666 BO->getOpcode() == Instruction::UDiv)
667 DivTraceTargets.push_back(BO);
668 if (Options.TraceGep)
669 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(&Inst))
670 GepTraceTargets.push_back(GEP);
671 if (Options.TraceLoads)
672 if (LoadInst *LI = dyn_cast<LoadInst>(&Inst))
673 Loads.push_back(LI);
674 if (Options.TraceStores)
675 if (StoreInst *SI = dyn_cast<StoreInst>(&Inst))
676 Stores.push_back(SI);
677 if (Options.StackDepth)
678 if (isa<InvokeInst>(Inst) ||
679 (isa<CallInst>(Inst) && !isa<IntrinsicInst>(Inst)))
680 IsLeafFunc = false;
681 }
682 }
683
684 if (Options.CollectControlFlow)
685 createFunctionControlFlow(F);
686
687 InjectCoverage(F, BlocksToInstrument, IsLeafFunc);
688 InjectCoverageForIndirectCalls(F, IndirCalls);
689 InjectTraceForCmp(F, CmpTraceTargets);
690 InjectTraceForSwitch(F, SwitchTraceTargets);
691 InjectTraceForDiv(F, DivTraceTargets);
692 InjectTraceForGep(F, GepTraceTargets);
693 InjectTraceForLoadsAndStores(F, Loads, Stores);
694}
695
696GlobalVariable *ModuleSanitizerCoverage::CreateFunctionLocalArrayInSection(
697 size_t NumElements, Function &F, Type *Ty, const char *Section) {
698 ArrayType *ArrayTy = ArrayType::get(Ty, NumElements);
699 auto Array = new GlobalVariable(
700 *CurModule, ArrayTy, false, GlobalVariable::PrivateLinkage,
701 Constant::getNullValue(ArrayTy), "__sancov_gen_");
702
703 if (TargetTriple.supportsCOMDAT() &&
704 (TargetTriple.isOSBinFormatELF() || !F.isInterposable()))
705 if (auto Comdat = getOrCreateFunctionComdat(F, TargetTriple))
706 Array->setComdat(Comdat);
707 Array->setSection(getSectionName(Section));
708 Array->setAlignment(Align(DL->getTypeStoreSize(Ty).getFixedValue()));
709
710 // sancov_pcs parallels the other metadata section(s). Optimizers (e.g.
711 // GlobalOpt/ConstantMerge) may not discard sancov_pcs and the other
712 // section(s) as a unit, so we conservatively retain all unconditionally in
713 // the compiler.
714 //
715 // With comdat (COFF/ELF), the linker can guarantee the associated sections
716 // will be retained or discarded as a unit, so llvm.compiler.used is
717 // sufficient. Otherwise, conservatively make all of them retained by the
718 // linker.
719 if (Array->hasComdat())
720 GlobalsToAppendToCompilerUsed.push_back(Array);
721 else
722 GlobalsToAppendToUsed.push_back(Array);
723
724 return Array;
725}
726
728ModuleSanitizerCoverage::CreatePCArray(Function &F,
729 ArrayRef<BasicBlock *> AllBlocks) {
730 size_t N = AllBlocks.size();
731 assert(N);
733 IRBuilder<> IRB(&*F.getEntryBlock().getFirstInsertionPt());
734 for (size_t i = 0; i < N; i++) {
735 if (&F.getEntryBlock() == AllBlocks[i]) {
736 PCs.push_back((Constant *)IRB.CreatePointerCast(&F, PtrTy));
737 PCs.push_back((Constant *)IRB.CreateIntToPtr(
738 ConstantInt::get(IntptrTy, 1), PtrTy));
739 } else {
740 PCs.push_back((Constant *)IRB.CreatePointerCast(
741 BlockAddress::get(AllBlocks[i]), PtrTy));
743 }
744 }
745 auto *PCArray = CreateFunctionLocalArrayInSection(N * 2, F, PtrTy,
747 PCArray->setInitializer(
748 ConstantArray::get(ArrayType::get(PtrTy, N * 2), PCs));
749 PCArray->setConstant(true);
750
751 return PCArray;
752}
753
754void ModuleSanitizerCoverage::CreateFunctionLocalArrays(
755 Function &F, ArrayRef<BasicBlock *> AllBlocks) {
756 if (Options.TracePCGuard)
757 FunctionGuardArray = CreateFunctionLocalArrayInSection(
758 AllBlocks.size(), F, Int32Ty, SanCovGuardsSectionName);
759
760 if (Options.Inline8bitCounters)
761 Function8bitCounterArray = CreateFunctionLocalArrayInSection(
762 AllBlocks.size(), F, Int8Ty, SanCovCountersSectionName);
763 if (Options.InlineBoolFlag)
764 FunctionBoolArray = CreateFunctionLocalArrayInSection(
765 AllBlocks.size(), F, Int1Ty, SanCovBoolFlagSectionName);
766
767 if (Options.PCTable)
768 FunctionPCsArray = CreatePCArray(F, AllBlocks);
769}
770
771bool ModuleSanitizerCoverage::InjectCoverage(Function &F,
772 ArrayRef<BasicBlock *> AllBlocks,
773 bool IsLeafFunc) {
774 if (AllBlocks.empty()) return false;
775 CreateFunctionLocalArrays(F, AllBlocks);
776 for (size_t i = 0, N = AllBlocks.size(); i < N; i++)
777 InjectCoverageAtBlock(F, *AllBlocks[i], i, IsLeafFunc);
778 return true;
779}
780
781// On every indirect call we call a run-time function
782// __sanitizer_cov_indir_call* with two parameters:
783// - callee address,
784// - global cache array that contains CacheSize pointers (zero-initialized).
785// The cache is used to speed up recording the caller-callee pairs.
786// The address of the caller is passed implicitly via caller PC.
787// CacheSize is encoded in the name of the run-time function.
788void ModuleSanitizerCoverage::InjectCoverageForIndirectCalls(
789 Function &F, ArrayRef<Instruction *> IndirCalls) {
790 if (IndirCalls.empty())
791 return;
792 assert(Options.TracePC || Options.TracePCGuard ||
793 Options.Inline8bitCounters || Options.InlineBoolFlag);
794 for (auto *I : IndirCalls) {
796 CallBase &CB = cast<CallBase>(*I);
798 if (isa<InlineAsm>(Callee))
799 continue;
800 IRB.CreateCall(SanCovTracePCIndir, IRB.CreatePointerCast(Callee, IntptrTy));
801 }
802}
803
804// For every switch statement we insert a call:
805// __sanitizer_cov_trace_switch(CondValue,
806// {NumCases, ValueSizeInBits, Case0Value, Case1Value, Case2Value, ... })
807
808void ModuleSanitizerCoverage::InjectTraceForSwitch(
809 Function &, ArrayRef<Instruction *> SwitchTraceTargets) {
810 for (auto *I : SwitchTraceTargets) {
811 if (SwitchInst *SI = dyn_cast<SwitchInst>(I)) {
813 SmallVector<Constant *, 16> Initializers;
814 Value *Cond = SI->getCondition();
815 if (Cond->getType()->getScalarSizeInBits() >
816 Int64Ty->getScalarSizeInBits())
817 continue;
818 Initializers.push_back(ConstantInt::get(Int64Ty, SI->getNumCases()));
819 Initializers.push_back(
820 ConstantInt::get(Int64Ty, Cond->getType()->getScalarSizeInBits()));
821 if (Cond->getType()->getScalarSizeInBits() <
822 Int64Ty->getScalarSizeInBits())
823 Cond = IRB.CreateIntCast(Cond, Int64Ty, false);
824 for (auto It : SI->cases()) {
825 ConstantInt *C = It.getCaseValue();
826 if (C->getType()->getScalarSizeInBits() < 64)
827 C = ConstantInt::get(C->getContext(), C->getValue().zext(64));
828 Initializers.push_back(C);
829 }
830 llvm::sort(drop_begin(Initializers, 2),
831 [](const Constant *A, const Constant *B) {
832 return cast<ConstantInt>(A)->getLimitedValue() <
833 cast<ConstantInt>(B)->getLimitedValue();
834 });
835 ArrayType *ArrayOfInt64Ty = ArrayType::get(Int64Ty, Initializers.size());
837 *CurModule, ArrayOfInt64Ty, false, GlobalVariable::InternalLinkage,
838 ConstantArray::get(ArrayOfInt64Ty, Initializers),
839 "__sancov_gen_cov_switch_values");
840 IRB.CreateCall(SanCovTraceSwitchFunction, {Cond, GV});
841 }
842 }
843}
844
845void ModuleSanitizerCoverage::InjectTraceForDiv(
846 Function &, ArrayRef<BinaryOperator *> DivTraceTargets) {
847 for (auto *BO : DivTraceTargets) {
849 Value *A1 = BO->getOperand(1);
850 if (isa<ConstantInt>(A1)) continue;
851 if (!A1->getType()->isIntegerTy())
852 continue;
853 uint64_t TypeSize = DL->getTypeStoreSizeInBits(A1->getType());
854 int CallbackIdx = TypeSize == 32 ? 0 :
855 TypeSize == 64 ? 1 : -1;
856 if (CallbackIdx < 0) continue;
857 auto Ty = Type::getIntNTy(*C, TypeSize);
858 IRB.CreateCall(SanCovTraceDivFunction[CallbackIdx],
859 {IRB.CreateIntCast(A1, Ty, true)});
860 }
861}
862
863void ModuleSanitizerCoverage::InjectTraceForGep(
864 Function &, ArrayRef<GetElementPtrInst *> GepTraceTargets) {
865 for (auto *GEP : GepTraceTargets) {
867 for (Use &Idx : GEP->indices())
868 if (!isa<ConstantInt>(Idx) && Idx->getType()->isIntegerTy())
869 IRB.CreateCall(SanCovTraceGepFunction,
870 {IRB.CreateIntCast(Idx, IntptrTy, true)});
871 }
872}
873
874void ModuleSanitizerCoverage::InjectTraceForLoadsAndStores(
876 auto CallbackIdx = [&](Type *ElementTy) -> int {
877 uint64_t TypeSize = DL->getTypeStoreSizeInBits(ElementTy);
878 return TypeSize == 8 ? 0
879 : TypeSize == 16 ? 1
880 : TypeSize == 32 ? 2
881 : TypeSize == 64 ? 3
882 : TypeSize == 128 ? 4
883 : -1;
884 };
885 for (auto *LI : Loads) {
887 auto Ptr = LI->getPointerOperand();
888 int Idx = CallbackIdx(LI->getType());
889 if (Idx < 0)
890 continue;
891 IRB.CreateCall(SanCovLoadFunction[Idx], Ptr);
892 }
893 for (auto *SI : Stores) {
895 auto Ptr = SI->getPointerOperand();
896 int Idx = CallbackIdx(SI->getValueOperand()->getType());
897 if (Idx < 0)
898 continue;
899 IRB.CreateCall(SanCovStoreFunction[Idx], Ptr);
900 }
901}
902
903void ModuleSanitizerCoverage::InjectTraceForCmp(
904 Function &, ArrayRef<Instruction *> CmpTraceTargets) {
905 for (auto *I : CmpTraceTargets) {
906 if (ICmpInst *ICMP = dyn_cast<ICmpInst>(I)) {
907 InstrumentationIRBuilder IRB(ICMP);
908 Value *A0 = ICMP->getOperand(0);
909 Value *A1 = ICMP->getOperand(1);
910 if (!A0->getType()->isIntegerTy())
911 continue;
912 uint64_t TypeSize = DL->getTypeStoreSizeInBits(A0->getType());
913 int CallbackIdx = TypeSize == 8 ? 0 :
914 TypeSize == 16 ? 1 :
915 TypeSize == 32 ? 2 :
916 TypeSize == 64 ? 3 : -1;
917 if (CallbackIdx < 0) continue;
918 // __sanitizer_cov_trace_cmp((type_size << 32) | predicate, A0, A1);
919 auto CallbackFunc = SanCovTraceCmpFunction[CallbackIdx];
920 bool FirstIsConst = isa<ConstantInt>(A0);
921 bool SecondIsConst = isa<ConstantInt>(A1);
922 // If both are const, then we don't need such a comparison.
923 if (FirstIsConst && SecondIsConst) continue;
924 // If only one is const, then make it the first callback argument.
925 if (FirstIsConst || SecondIsConst) {
926 CallbackFunc = SanCovTraceConstCmpFunction[CallbackIdx];
927 if (SecondIsConst)
928 std::swap(A0, A1);
929 }
930
931 auto Ty = Type::getIntNTy(*C, TypeSize);
932 IRB.CreateCall(CallbackFunc, {IRB.CreateIntCast(A0, Ty, true),
933 IRB.CreateIntCast(A1, Ty, true)});
934 }
935 }
936}
937
938void ModuleSanitizerCoverage::InjectCoverageAtBlock(Function &F, BasicBlock &BB,
939 size_t Idx,
940 bool IsLeafFunc) {
942 bool IsEntryBB = &BB == &F.getEntryBlock();
943 DebugLoc EntryLoc;
944 if (IsEntryBB) {
945 if (auto SP = F.getSubprogram())
946 EntryLoc = DILocation::get(SP->getContext(), SP->getScopeLine(), 0, SP);
947 // Keep static allocas and llvm.localescape calls in the entry block. Even
948 // if we aren't splitting the block, it's nice for allocas to be before
949 // calls.
950 IP = PrepareToSplitEntryBlock(BB, IP);
951 }
952
953 InstrumentationIRBuilder IRB(&*IP);
954 if (EntryLoc)
955 IRB.SetCurrentDebugLocation(EntryLoc);
956 if (Options.TracePC) {
957 IRB.CreateCall(SanCovTracePC)
958 ->setCannotMerge(); // gets the PC using GET_CALLER_PC.
959 }
960 if (Options.TracePCGuard) {
961 auto GuardPtr = IRB.CreateIntToPtr(
962 IRB.CreateAdd(IRB.CreatePointerCast(FunctionGuardArray, IntptrTy),
963 ConstantInt::get(IntptrTy, Idx * 4)),
964 PtrTy);
965 IRB.CreateCall(SanCovTracePCGuard, GuardPtr)->setCannotMerge();
966 }
967 if (Options.Inline8bitCounters) {
968 auto CounterPtr = IRB.CreateGEP(
969 Function8bitCounterArray->getValueType(), Function8bitCounterArray,
970 {ConstantInt::get(IntptrTy, 0), ConstantInt::get(IntptrTy, Idx)});
971 auto Load = IRB.CreateLoad(Int8Ty, CounterPtr);
972 auto Inc = IRB.CreateAdd(Load, ConstantInt::get(Int8Ty, 1));
973 auto Store = IRB.CreateStore(Inc, CounterPtr);
974 Load->setNoSanitizeMetadata();
975 Store->setNoSanitizeMetadata();
976 }
977 if (Options.InlineBoolFlag) {
978 auto FlagPtr = IRB.CreateGEP(
979 FunctionBoolArray->getValueType(), FunctionBoolArray,
980 {ConstantInt::get(IntptrTy, 0), ConstantInt::get(IntptrTy, Idx)});
981 auto Load = IRB.CreateLoad(Int1Ty, FlagPtr);
982 auto ThenTerm =
983 SplitBlockAndInsertIfThen(IRB.CreateIsNull(Load), &*IP, false);
984 IRBuilder<> ThenIRB(ThenTerm);
985 auto Store = ThenIRB.CreateStore(ConstantInt::getTrue(Int1Ty), FlagPtr);
986 Load->setNoSanitizeMetadata();
987 Store->setNoSanitizeMetadata();
988 }
989 if (Options.StackDepth && IsEntryBB && !IsLeafFunc) {
990 // Check stack depth. If it's the deepest so far, record it.
991 Module *M = F.getParent();
992 Function *GetFrameAddr = Intrinsic::getDeclaration(
993 M, Intrinsic::frameaddress,
994 IRB.getPtrTy(M->getDataLayout().getAllocaAddrSpace()));
995 auto FrameAddrPtr =
996 IRB.CreateCall(GetFrameAddr, {Constant::getNullValue(Int32Ty)});
997 auto FrameAddrInt = IRB.CreatePtrToInt(FrameAddrPtr, IntptrTy);
998 auto LowestStack = IRB.CreateLoad(IntptrTy, SanCovLowestStack);
999 auto IsStackLower = IRB.CreateICmpULT(FrameAddrInt, LowestStack);
1000 auto ThenTerm = SplitBlockAndInsertIfThen(IsStackLower, &*IP, false);
1001 IRBuilder<> ThenIRB(ThenTerm);
1002 auto Store = ThenIRB.CreateStore(FrameAddrInt, SanCovLowestStack);
1003 LowestStack->setNoSanitizeMetadata();
1004 Store->setNoSanitizeMetadata();
1005 }
1006}
1007
1008std::string
1009ModuleSanitizerCoverage::getSectionName(const std::string &Section) const {
1010 if (TargetTriple.isOSBinFormatCOFF()) {
1011 if (Section == SanCovCountersSectionName)
1012 return ".SCOV$CM";
1013 if (Section == SanCovBoolFlagSectionName)
1014 return ".SCOV$BM";
1015 if (Section == SanCovPCsSectionName)
1016 return ".SCOVP$M";
1017 return ".SCOV$GM"; // For SanCovGuardsSectionName.
1018 }
1019 if (TargetTriple.isOSBinFormatMachO())
1020 return "__DATA,__" + Section;
1021 return "__" + Section;
1022}
1023
1024std::string
1025ModuleSanitizerCoverage::getSectionStart(const std::string &Section) const {
1026 if (TargetTriple.isOSBinFormatMachO())
1027 return "\1section$start$__DATA$__" + Section;
1028 return "__start___" + Section;
1029}
1030
1031std::string
1032ModuleSanitizerCoverage::getSectionEnd(const std::string &Section) const {
1033 if (TargetTriple.isOSBinFormatMachO())
1034 return "\1section$end$__DATA$__" + Section;
1035 return "__stop___" + Section;
1036}
1037
1038void ModuleSanitizerCoverage::createFunctionControlFlow(Function &F) {
1040 IRBuilder<> IRB(&*F.getEntryBlock().getFirstInsertionPt());
1041
1042 for (auto &BB : F) {
1043 // blockaddress can not be used on function's entry block.
1044 if (&BB == &F.getEntryBlock())
1045 CFs.push_back((Constant *)IRB.CreatePointerCast(&F, PtrTy));
1046 else
1047 CFs.push_back((Constant *)IRB.CreatePointerCast(BlockAddress::get(&BB),
1048 PtrTy));
1049
1050 for (auto SuccBB : successors(&BB)) {
1051 assert(SuccBB != &F.getEntryBlock());
1052 CFs.push_back((Constant *)IRB.CreatePointerCast(BlockAddress::get(SuccBB),
1053 PtrTy));
1054 }
1055
1057
1058 for (auto &Inst : BB) {
1059 if (CallBase *CB = dyn_cast<CallBase>(&Inst)) {
1060 if (CB->isIndirectCall()) {
1061 // TODO(navidem): handle indirect calls, for now mark its existence.
1062 CFs.push_back((Constant *)IRB.CreateIntToPtr(
1063 ConstantInt::get(IntptrTy, -1), PtrTy));
1064 } else {
1065 auto CalledF = CB->getCalledFunction();
1066 if (CalledF && !CalledF->isIntrinsic())
1067 CFs.push_back(
1068 (Constant *)IRB.CreatePointerCast(CalledF, PtrTy));
1069 }
1070 }
1071 }
1072
1074 }
1075
1076 FunctionCFsArray = CreateFunctionLocalArrayInSection(
1077 CFs.size(), F, PtrTy, SanCovCFsSectionName);
1078 FunctionCFsArray->setInitializer(
1079 ConstantArray::get(ArrayType::get(PtrTy, CFs.size()), CFs));
1080 FunctionCFsArray->setConstant(true);
1081}
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
BlockVerifier::State From
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
This is the interface for a simple mod/ref and alias analysis over globals.
Hexagon Common GEP
static LVOptions Options
Definition: LVOptions.cpp:25
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
Module.h This file contains the declarations for the Module class.
IntegerType * Int32Ty
static cl::opt< bool > SplitAllCriticalEdges("phi-elim-split-all-critical-edges", cl::init(false), cl::Hidden, cl::desc("Split all critical edges during " "PHI elimination"))
const char LLVMTargetMachineRef LLVMPassBuilderOptionsRef Options
FunctionAnalysisManager FAM
ModuleAnalysisManager MAM
const SmallVectorImpl< MachineOperand > & Cond
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static cl::opt< bool > ClCreatePCTable("sanitizer-coverage-pc-table", cl::desc("create a static PC table"), cl::Hidden, cl::init(false))
const char SanCovCFsSectionName[]
static cl::opt< bool > ClStoreTracing("sanitizer-coverage-trace-stores", cl::desc("Tracing of store instructions"), cl::Hidden, cl::init(false))
static cl::opt< bool > ClInline8bitCounters("sanitizer-coverage-inline-8bit-counters", cl::desc("increments 8-bit counter for every edge"), cl::Hidden, cl::init(false))
const char SanCovTraceConstCmp4[]
const char SanCovBoolFlagSectionName[]
static bool IsBackEdge(BasicBlock *From, BasicBlock *To, const DominatorTree *DT)
static cl::opt< bool > ClCollectCF("sanitizer-coverage-control-flow", cl::desc("collect control flow for each function"), cl::Hidden, cl::init(false))
const char SanCov8bitCountersInitName[]
static cl::opt< bool > ClInlineBoolFlag("sanitizer-coverage-inline-bool-flag", cl::desc("sets a boolean flag for every edge"), cl::Hidden, cl::init(false))
static cl::opt< bool > ClLoadTracing("sanitizer-coverage-trace-loads", cl::desc("Tracing of load instructions"), cl::Hidden, cl::init(false))
const char SanCovLoad8[]
static bool isFullPostDominator(const BasicBlock *BB, const PostDominatorTree *PDT)
const char SanCovTraceSwitchName[]
const char SanCovTraceCmp1[]
const char SanCovModuleCtorTracePcGuardName[]
static cl::opt< bool > ClCMPTracing("sanitizer-coverage-trace-compares", cl::desc("Tracing of CMP and similar instructions"), cl::Hidden, cl::init(false))
const char SanCovCountersSectionName[]
const char SanCovPCsInitName[]
const char SanCovTracePCGuardName[]
const char SanCovModuleCtor8bitCountersName[]
const char SanCovTracePCGuardInitName[]
const char SanCovTraceDiv4[]
static const uint64_t SanCtorAndDtorPriority
const char SanCovBoolFlagInitName[]
static cl::opt< bool > ClStackDepth("sanitizer-coverage-stack-depth", cl::desc("max stack depth tracing"), cl::Hidden, cl::init(false))
const char SanCovTraceGep[]
static cl::opt< bool > ClTracePC("sanitizer-coverage-trace-pc", cl::desc("Experimental pc tracing"), cl::Hidden, cl::init(false))
const char SanCovLoad16[]
const char SanCovTraceConstCmp8[]
const char SanCovGuardsSectionName[]
const char SanCovStore1[]
const char SanCovTraceConstCmp2[]
const char SanCovTraceConstCmp1[]
static bool shouldInstrumentBlock(const Function &F, const BasicBlock *BB, const DominatorTree *DT, const PostDominatorTree *PDT, const SanitizerCoverageOptions &Options)
static cl::opt< bool > ClTracePCGuard("sanitizer-coverage-trace-pc-guard", cl::desc("pc tracing with a guard"), cl::Hidden, cl::init(false))
const char SanCovTraceDiv8[]
const char SanCovLoad4[]
const char SanCovCFsInitName[]
const char SanCovStore2[]
static cl::opt< bool > ClPruneBlocks("sanitizer-coverage-prune-blocks", cl::desc("Reduce the number of instrumented blocks"), cl::Hidden, cl::init(true))
static cl::opt< int > ClCoverageLevel("sanitizer-coverage-level", cl::desc("Sanitizer Coverage. 0: none, 1: entry block, 2: all blocks, " "3: all blocks and critical edges"), cl::Hidden, cl::init(0))
const char SanCovPCsSectionName[]
const char SanCovLoad1[]
const char SanCovTraceCmp8[]
const char SanCovStore16[]
const char SanCovModuleCtorBoolFlagName[]
static bool IsInterestingCmp(ICmpInst *CMP, const DominatorTree *DT, const SanitizerCoverageOptions &Options)
const char SanCovTraceCmp2[]
const char SanCovStore8[]
const char SanCovTracePCName[]
const char SanCovStore4[]
const char SanCovLoad2[]
static bool isFullDominator(const BasicBlock *BB, const DominatorTree *DT)
const char SanCovTraceCmp4[]
const char SanCovLowestStackName[]
static cl::opt< bool > ClDIVTracing("sanitizer-coverage-trace-divs", cl::desc("Tracing of DIV instructions"), cl::Hidden, cl::init(false))
const char SanCovTracePCIndirName[]
static cl::opt< bool > ClGEPTracing("sanitizer-coverage-trace-geps", cl::desc("Tracing of GEP instructions"), cl::Hidden, cl::init(false))
This file defines the SmallVector class.
Defines the virtual file system interface vfs::FileSystem.
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:321
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Definition: PassManager.h:473
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
size_t size() const
size - Get the array size.
Definition: ArrayRef.h:165
bool empty() const
empty - Check if the array is empty.
Definition: ArrayRef.h:160
static ArrayType * get(Type *ElementType, uint64_t NumElements)
This static method is the primary way to construct an ArrayType.
Definition: Type.cpp:647
AttributeList addParamAttribute(LLVMContext &C, unsigned ArgNo, Attribute::AttrKind Kind) const
Add an argument attribute to the list.
Definition: Attributes.h:589
LLVM Basic Block Representation.
Definition: BasicBlock.h:60
iterator end()
Definition: BasicBlock.h:443
const_iterator getFirstInsertionPt() const
Returns an iterator to the first instruction in this block that is suitable for inserting a non-PHI i...
Definition: BasicBlock.cpp:409
const BasicBlock * getUniqueSuccessor() const
Return the successor of this block if it has a unique successor.
Definition: BasicBlock.cpp:490
const BasicBlock * getSinglePredecessor() const
Return the predecessor of this block if it has a single predecessor block.
Definition: BasicBlock.cpp:452
const Instruction * getFirstNonPHIOrDbgOrLifetime(bool SkipPseudoOp=true) const
Returns a pointer to the first instruction in this block that is not a PHINode, a debug intrinsic,...
Definition: BasicBlock.cpp:393
InstListType::iterator iterator
Instruction iterators...
Definition: BasicBlock.h:165
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
Definition: BasicBlock.h:221
static BlockAddress * get(Function *F, BasicBlock *BB)
Return a BlockAddress for the specified function and basic block.
Definition: Constants.cpp:1846
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
Definition: InstrTypes.h:1494
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
Definition: InstrTypes.h:1742
bool isIndirectCall() const
Return true if the callsite is an indirect call.
Value * getCalledOperand() const
Definition: InstrTypes.h:1735
static Constant * get(ArrayType *T, ArrayRef< Constant * > V)
Definition: Constants.cpp:1291
This is the shared class of boolean and integer constants.
Definition: Constants.h:80
static ConstantInt * getTrue(LLVMContext &Context)
Definition: Constants.cpp:849
This is an important base class in LLVM.
Definition: Constant.h:41
static Constant * getAllOnesValue(Type *Ty)
Definition: Constants.cpp:417
static Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
Definition: Constants.cpp:370
A parsed version of the target data layout string in and methods for querying it.
Definition: DataLayout.h:110
A debug info location.
Definition: DebugLoc.h:33
Analysis pass which computes a DominatorTree.
Definition: Dominators.h:279
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition: Dominators.h:162
bool dominates(const BasicBlock *BB, const Use &U) const
Return true if the (end of the) basic block BB dominates the use U.
Definition: Dominators.cpp:122
A handy container for a FunctionType+Callee-pointer pair, which can be passed around as a single enti...
Definition: DerivedTypes.h:168
const BasicBlock & getEntryBlock() const
Definition: Function.h:783
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
Definition: Instructions.h:973
void setComdat(Comdat *C)
Definition: Globals.cpp:197
void setLinkage(LinkageTypes LT)
Definition: GlobalValue.h:537
@ HiddenVisibility
The GV is hidden.
Definition: GlobalValue.h:68
void setVisibility(VisibilityTypes V)
Definition: GlobalValue.h:254
LinkageTypes
An enumeration for the kinds of linkage for global values.
Definition: GlobalValue.h:51
@ PrivateLinkage
Like Internal, but omit from symbol table.
Definition: GlobalValue.h:60
@ InternalLinkage
Rename collisions when linking (static functions).
Definition: GlobalValue.h:59
@ WeakODRLinkage
Same, but only replaced by something equivalent.
Definition: GlobalValue.h:57
@ ExternalLinkage
Externally visible function.
Definition: GlobalValue.h:52
@ AvailableExternallyLinkage
Available for inspection, not emission.
Definition: GlobalValue.h:53
@ ExternalWeakLinkage
ExternalWeak linkage description.
Definition: GlobalValue.h:61
Analysis pass providing a never-invalidated alias analysis result.
This instruction compares its operands according to the predicate given to the constructor.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition: IRBuilder.h:2666
An analysis over an "outer" IR unit that provides access to an analysis manager over an "inner" IR un...
Definition: PassManager.h:631
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:67
An instruction for reading from memory.
Definition: Instructions.h:184
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
Definition: Metadata.h:1541
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
static PointerType * getUnqual(Type *ElementType)
This constructs a pointer to an object of the specified type in the default address space (address sp...
Definition: DerivedTypes.h:662
Analysis pass which computes a PostDominatorTree.
PostDominatorTree Class - Concrete subclass of DominatorTree that is used to compute the post-dominat...
bool dominates(const Instruction *I1, const Instruction *I2) const
Return true if I1 dominates I2.
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:109
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
Definition: Analysis.h:112
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: Analysis.h:115
void abandon()
Mark an analysis as abandoned.
Definition: Analysis.h:162
PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
size_t size() const
Definition: SmallVector.h:91
void push_back(const T &Elt)
Definition: SmallVector.h:426
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
This is a utility class used to parse user-provided text files with "special case lists" for code san...
An instruction for storing to memory.
Definition: Instructions.h:317
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
Multiway switch.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
static IntegerType * getInt1Ty(LLVMContext &C)
static IntegerType * getIntNTy(LLVMContext &C, unsigned N)
static Type * getVoidTy(LLVMContext &C)
static IntegerType * getInt16Ty(LLVMContext &C)
static IntegerType * getInt8Ty(LLVMContext &C)
static IntegerType * getInt32Ty(LLVMContext &C)
bool isIntegerTy() const
True if this is an instance of IntegerType.
Definition: Type.h:228
A Use represents the edge between a Value definition and its users.
Definition: Use.h:43
LLVM Value Representation.
Definition: Value.h:74
Type * getType() const
All values are typed, get the type of this value.
Definition: Value.h:255
StringRef getName() const
Return a constant reference to the value's name.
Definition: Value.cpp:309
An efficient, type-erasing, non-owning reference to a callable.
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
Function * getDeclaration(Module *M, ID id, ArrayRef< Type * > Tys=std::nullopt)
Create or insert an LLVM Function declaration for an intrinsic, and return it.
Definition: Function.cpp:1461
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:450
static constexpr const StringLiteral & getSectionName(DebugSectionKind SectionKind)
Return the name of the section.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
Definition: STLExtras.h:329
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1722
bool succ_empty(const Instruction *I)
Definition: CFG.h:255
auto successors(const MachineBasicBlock *BB)
FunctionCallee declareSanitizerInitFunction(Module &M, StringRef InitName, ArrayRef< Type * > InitArgTypes, bool Weak=false)
std::string getUniqueModuleId(Module *M)
Produce a unique identifier for this module by taking the MD5 sum of the names of the module's strong...
std::pair< Function *, FunctionCallee > createSanitizerCtorAndInitFunctions(Module &M, StringRef CtorName, StringRef InitName, ArrayRef< Type * > InitArgTypes, ArrayRef< Value * > InitArgs, StringRef VersionCheckName=StringRef(), bool Weak=false)
Creates sanitizer constructor function, and calls sanitizer's init function from it.
void sort(IteratorTy Start, IteratorTy End)
Definition: STLExtras.h:1647
EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
Comdat * getOrCreateFunctionComdat(Function &F, Triple &T)
void appendToCompilerUsed(Module &M, ArrayRef< GlobalValue * > Values)
Adds global values to the llvm.compiler.used list.
bool isAsynchronousEHPersonality(EHPersonality Pers)
Returns true if this personality function catches asynchronous exceptions.
void appendToGlobalCtors(Module &M, Function *F, int Priority, Constant *Data=nullptr)
Append F to the list of global ctors of module M with the given Priority.
Definition: ModuleUtils.cpp:73
auto predecessors(const MachineBasicBlock *BB)
bool pred_empty(const BasicBlock *BB)
Definition: CFG.h:118
BasicBlock::iterator PrepareToSplitEntryBlock(BasicBlock &BB, BasicBlock::iterator IP)
Instrumentation passes often insert conditional checks into entry blocks.
Instruction * SplitBlockAndInsertIfThen(Value *Cond, BasicBlock::iterator SplitBefore, bool Unreachable, MDNode *BranchWeights=nullptr, DomTreeUpdater *DTU=nullptr, LoopInfo *LI=nullptr, BasicBlock *ThenBlock=nullptr)
Split the containing block at the specified instruction - everything before SplitBefore stays in the ...
void appendToUsed(Module &M, ArrayRef< GlobalValue * > Values)
Adds global values to the llvm.used list.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Definition: BitVector.h:860
#define N
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39
Option class for critical edge splitting.
enum llvm::SanitizerCoverageOptions::Type CoverageType