42#define DEBUG_TYPE "sancov"
69 "sancov.module_ctor_trace_pc_guard";
71 "sancov.module_ctor_8bit_counters";
94 "sanitizer-coverage-level",
95 cl::desc(
"Sanitizer Coverage. 0: none, 1: entry block, 2: all blocks, "
96 "3: all blocks and critical edges"),
103 cl::desc(
"pc tracing with a guard"),
113 cl::desc(
"create a static PC table"),
118 cl::desc(
"increments 8-bit counter for every edge"),
123 cl::desc(
"do not emit module ctors for global counters"),
128 cl::desc(
"sets a boolean flag for every edge"),
133 cl::desc(
"Tracing of CMP and similar instructions"),
137 cl::desc(
"Tracing of DIV instructions"),
141 cl::desc(
"Tracing of load instructions"),
145 cl::desc(
"Tracing of store instructions"),
149 cl::desc(
"Tracing of GEP instructions"),
154 cl::desc(
"Reduce the number of instrumented blocks"),
158 cl::desc(
"max stack depth tracing"),
162 "sanitizer-coverage-stack-depth-callback-min",
163 cl::desc(
"max stack depth tracing should use callback and only when "
164 "stack depth more than specified"),
172 "sanitizer-coverage-gated-trace-callbacks",
173 cl::desc(
"Gate the invocation of the tracing callbacks on a global variable"
174 ". Currently only supported for trace-pc-guard and trace-cmp."),
181 switch (LegacyCoverageLevel) {
217 Options.StackDepthCallbackMin = std::max(
Options.StackDepthCallbackMin,
230class ModuleSanitizerCoverage {
232 using DomTreeCallback = function_ref<
const DominatorTree &(
Function &
F)>;
233 using PostDomTreeCallback =
234 function_ref<
const PostDominatorTree &(
Function &
F)>;
236 ModuleSanitizerCoverage(
Module &M, DomTreeCallback DTCallback,
237 PostDomTreeCallback PDTCallback,
238 const SanitizerCoverageOptions &Options,
239 const SpecialCaseList *Allowlist,
240 const SpecialCaseList *Blocklist)
241 : M(M), DTCallback(DTCallback), PDTCallback(PDTCallback),
242 Options(Options), Allowlist(Allowlist), Blocklist(Blocklist) {}
244 bool instrumentModule();
247 void createFunctionControlFlow(Function &
F);
248 void instrumentFunction(Function &
F);
249 void InjectCoverageForIndirectCalls(Function &
F,
252 Value *&FunctionGateCmp);
253 void InjectTraceForDiv(Function &
F,
255 void InjectTraceForGep(Function &
F,
259 void InjectTraceForSwitch(Function &
F,
261 Value *&FunctionGateCmp);
263 Value *&FunctionGateCmp,
bool IsLeafFunc);
264 GlobalVariable *CreateFunctionLocalArrayInSection(
size_t NumElements,
265 Function &
F,
Type *Ty,
266 const char *Section);
272 void InjectCoverageAtBlock(Function &
F, BasicBlock &BB,
size_t Idx,
273 Value *&FunctionGateCmp,
bool IsLeafFunc);
274 Function *CreateInitCallsForSections(
Module &M,
const char *CtorName,
275 const char *InitFunctionName,
Type *Ty,
276 const char *Section);
277 std::pair<Value *, Value *> CreateSecStartEnd(
Module &M,
const char *Section,
281 std::string getSectionStart(
const std::string &Section)
const;
282 std::string getSectionEnd(
const std::string &Section)
const;
285 DomTreeCallback DTCallback;
286 PostDomTreeCallback PDTCallback;
288 FunctionCallee SanCovStackDepthCallback;
289 FunctionCallee SanCovTracePCIndir;
290 FunctionCallee SanCovTracePC, SanCovTracePCGuard;
291 std::array<FunctionCallee, 4> SanCovTraceCmpFunction;
292 std::array<FunctionCallee, 4> SanCovTraceConstCmpFunction;
293 std::array<FunctionCallee, 5> SanCovLoadFunction;
294 std::array<FunctionCallee, 5> SanCovStoreFunction;
295 std::array<FunctionCallee, 2> SanCovTraceDivFunction;
296 FunctionCallee SanCovTraceGepFunction;
297 FunctionCallee SanCovTraceSwitchFunction;
298 GlobalVariable *SanCovLowestStack;
299 GlobalVariable *SanCovCallbackGate;
300 Type *PtrTy, *IntptrTy, *Int64Ty, *Int32Ty, *Int16Ty, *Int8Ty, *Int1Ty;
304 const DataLayout *DL;
306 GlobalVariable *FunctionGuardArray;
307 GlobalVariable *Function8bitCounterArray;
308 GlobalVariable *FunctionBoolArray;
309 GlobalVariable *FunctionPCsArray;
310 GlobalVariable *FunctionCFsArray;
314 SanitizerCoverageOptions Options;
316 const SpecialCaseList *Allowlist;
317 const SpecialCaseList *Blocklist;
330 ModuleSanitizerCoverage ModuleSancov(M, DTCallback, PDTCallback,
331 OverrideFromCL(Options), Allowlist.get(),
333 if (!ModuleSancov.instrumentModule())
344std::pair<Value *, Value *>
345ModuleSanitizerCoverage::CreateSecStartEnd(
Module &M,
const char *Section,
355 getSectionStart(Section));
358 getSectionEnd(Section));
361 if (!TargetTriple.isOSBinFormatCOFF())
362 return std::make_pair(SecStart, SecEnd);
367 IRB.CreatePtrAdd(SecStart, ConstantInt::get(IntptrTy,
sizeof(
uint64_t)));
368 return std::make_pair(
GEP, SecEnd);
371Function *ModuleSanitizerCoverage::CreateInitCallsForSections(
372 Module &M,
const char *CtorName,
const char *InitFunctionName,
Type *Ty,
373 const char *Section) {
376 auto SecStartEnd = CreateSecStartEnd(M, Section, Ty);
377 auto SecStart = SecStartEnd.first;
378 auto SecEnd = SecStartEnd.second;
381 M, CtorName, InitFunctionName, {PtrTy, PtrTy}, {SecStart, SecEnd});
384 if (TargetTriple.supportsCOMDAT()) {
386 CtorFunc->
setComdat(
M.getOrInsertComdat(CtorName));
392 if (TargetTriple.isOSBinFormatCOFF()) {
404bool ModuleSanitizerCoverage::instrumentModule() {
408 !Allowlist->inSection(
"coverage",
"src",
M.getSourceFileName()))
411 Blocklist->inSection(
"coverage",
"src",
M.getSourceFileName()))
413 C = &(
M.getContext());
414 DL = &
M.getDataLayout();
416 TargetTriple =
M.getTargetTriple();
417 FunctionGuardArray =
nullptr;
418 Function8bitCounterArray =
nullptr;
419 FunctionBoolArray =
nullptr;
420 FunctionPCsArray =
nullptr;
421 FunctionCFsArray =
nullptr;
426 Int64Ty = IRB.getInt64Ty();
428 Int16Ty = IRB.getInt16Ty();
429 Int8Ty = IRB.getInt8Ty();
430 Int1Ty = IRB.getInt1Ty();
436 AttributeList SanCovTraceCmpZeroExtAL;
437 SanCovTraceCmpZeroExtAL =
438 SanCovTraceCmpZeroExtAL.addParamAttribute(*
C, 0, Attribute::ZExt);
439 SanCovTraceCmpZeroExtAL =
440 SanCovTraceCmpZeroExtAL.addParamAttribute(*
C, 1, Attribute::ZExt);
442 SanCovTraceCmpFunction[0] =
444 IRB.getInt8Ty(), IRB.getInt8Ty());
445 SanCovTraceCmpFunction[1] =
447 IRB.getInt16Ty(), IRB.getInt16Ty());
448 SanCovTraceCmpFunction[2] =
450 IRB.getInt32Ty(), IRB.getInt32Ty());
451 SanCovTraceCmpFunction[3] =
454 SanCovTraceConstCmpFunction[0] =
M.getOrInsertFunction(
456 SanCovTraceConstCmpFunction[1] =
M.getOrInsertFunction(
458 SanCovTraceConstCmpFunction[2] =
M.getOrInsertFunction(
460 SanCovTraceConstCmpFunction[3] =
464 SanCovLoadFunction[0] =
M.getOrInsertFunction(
SanCovLoad1, VoidTy, PtrTy);
465 SanCovLoadFunction[1] =
M.getOrInsertFunction(
SanCovLoad2, VoidTy, PtrTy);
466 SanCovLoadFunction[2] =
M.getOrInsertFunction(
SanCovLoad4, VoidTy, PtrTy);
467 SanCovLoadFunction[3] =
M.getOrInsertFunction(
SanCovLoad8, VoidTy, PtrTy);
468 SanCovLoadFunction[4] =
M.getOrInsertFunction(
SanCovLoad16, VoidTy, PtrTy);
470 SanCovStoreFunction[0] =
M.getOrInsertFunction(
SanCovStore1, VoidTy, PtrTy);
471 SanCovStoreFunction[1] =
M.getOrInsertFunction(
SanCovStore2, VoidTy, PtrTy);
472 SanCovStoreFunction[2] =
M.getOrInsertFunction(
SanCovStore4, VoidTy, PtrTy);
473 SanCovStoreFunction[3] =
M.getOrInsertFunction(
SanCovStore8, VoidTy, PtrTy);
474 SanCovStoreFunction[4] =
M.getOrInsertFunction(
SanCovStore16, VoidTy, PtrTy);
478 AL =
AL.addParamAttribute(*
C, 0, Attribute::ZExt);
479 SanCovTraceDivFunction[0] =
482 SanCovTraceDivFunction[1] =
484 SanCovTraceGepFunction =
486 SanCovTraceSwitchFunction =
490 if (SanCovLowestStack->getValueType() != IntptrTy) {
492 "' should not be declared by the user");
495 SanCovLowestStack->setThreadLocalMode(
497 if (
Options.StackDepth && !SanCovLowestStack->isDeclaration())
503 "' is only supported with trace-pc-guard or trace-cmp");
509 SanCovCallbackGate->setSection(
521 SanCovStackDepthCallback =
525 instrumentFunction(
F);
529 if (FunctionGuardArray)
533 if (Function8bitCounterArray)
537 if (FunctionBoolArray) {
547 IRBCtor.CreateCall(InitFunction, {SecStartEnd.first, SecStartEnd.second});
550 if (Ctor &&
Options.CollectControlFlow) {
555 IRBCtor.CreateCall(InitFunction, {SecStartEnd.first, SecStartEnd.second});
601 if (
Options.NoPrune || &
F.getEntryBlock() == BB)
605 &
F.getEntryBlock() != BB)
636 if (CMP->hasOneUse())
644void ModuleSanitizerCoverage::instrumentFunction(
Function &
F) {
647 if (
F.getName().contains(
".module_ctor"))
649 if (
F.getName().starts_with(
"__sanitizer_"))
656 if (
F.getName() ==
"__local_stdio_printf_options" ||
657 F.getName() ==
"__local_stdio_scanf_options")
664 if (
F.hasPersonalityFn() &&
667 if (Allowlist && !Allowlist->inSection(
"coverage",
"fun",
F.getName()))
669 if (Blocklist && Blocklist->inSection(
"coverage",
"fun",
F.getName()))
672 if (
F.hasFnAttribute(Attribute::Naked))
674 if (
F.hasFnAttribute(Attribute::NoSanitizeCoverage))
676 if (
F.hasFnAttribute(Attribute::DisableSanitizerInstrumentation))
693 bool IsLeafFunc =
true;
698 for (
auto &Inst : BB) {
713 if (BO->getOpcode() == Instruction::SDiv ||
714 BO->getOpcode() == Instruction::UDiv)
732 if (
Options.CollectControlFlow)
733 createFunctionControlFlow(
F);
735 Value *FunctionGateCmp =
nullptr;
736 InjectCoverage(
F, BlocksToInstrument, FunctionGateCmp, IsLeafFunc);
737 InjectCoverageForIndirectCalls(
F, IndirCalls);
738 InjectTraceForCmp(
F, CmpTraceTargets, FunctionGateCmp);
739 InjectTraceForSwitch(
F, SwitchTraceTargets, FunctionGateCmp);
740 InjectTraceForDiv(
F, DivTraceTargets);
741 InjectTraceForGep(
F, GepTraceTargets);
742 InjectTraceForLoadsAndStores(
F, Loads, Stores);
745GlobalVariable *ModuleSanitizerCoverage::CreateFunctionLocalArrayInSection(
746 size_t NumElements,
Function &
F,
Type *Ty,
const char *Section) {
752 if (TargetTriple.supportsCOMDAT() &&
753 (
F.hasComdat() || TargetTriple.isOSBinFormatELF() || !
F.isInterposable()))
757 Array->setAlignment(
Align(
DL->getTypeStoreSize(Ty).getFixedValue()));
768 if (
Array->hasComdat())
769 GlobalsToAppendToCompilerUsed.push_back(Array);
771 GlobalsToAppendToUsed.push_back(Array);
777ModuleSanitizerCoverage::CreatePCArray(
Function &
F,
779 size_t N = AllBlocks.
size();
782 IRBuilder<> IRB(&*
F.getEntryBlock().getFirstInsertionPt());
783 for (
size_t i = 0; i <
N; i++) {
784 if (&
F.getEntryBlock() == AllBlocks[i]) {
787 (
Constant *)IRB.CreateIntToPtr(ConstantInt::get(IntptrTy, 1), PtrTy));
796 PCArray->setInitializer(
798 PCArray->setConstant(
true);
803void ModuleSanitizerCoverage::CreateFunctionLocalArrays(
806 FunctionGuardArray = CreateFunctionLocalArrayInSection(
809 if (
Options.Inline8bitCounters)
810 Function8bitCounterArray = CreateFunctionLocalArrayInSection(
813 FunctionBoolArray = CreateFunctionLocalArrayInSection(
817 FunctionPCsArray = CreatePCArray(
F, AllBlocks);
820Value *ModuleSanitizerCoverage::CreateFunctionLocalGateCmp(
IRBuilder<> &IRB) {
822 Load->setNoSanitizeMetadata();
824 Cmp->setName(
"sancov gate cmp");
829 Value *&FunctionGateCmp,
831 if (!FunctionGateCmp) {
837 FunctionGateCmp = CreateFunctionLocalGateCmp(EntryIRB);
846bool ModuleSanitizerCoverage::InjectCoverage(
Function &
F,
848 Value *&FunctionGateCmp,
850 if (AllBlocks.
empty())
852 CreateFunctionLocalArrays(
F, AllBlocks);
853 for (
size_t i = 0,
N = AllBlocks.
size(); i <
N; i++)
854 InjectCoverageAtBlock(
F, *AllBlocks[i], i, FunctionGateCmp, IsLeafFunc);
865void ModuleSanitizerCoverage::InjectCoverageForIndirectCalls(
867 if (IndirCalls.
empty())
871 for (
auto *
I : IndirCalls) {
885void ModuleSanitizerCoverage::InjectTraceForSwitch(
887 Value *&FunctionGateCmp) {
888 for (
auto *
I : SwitchTraceTargets) {
893 if (
Cond->getType()->getScalarSizeInBits() >
894 Int64Ty->getScalarSizeInBits())
896 Initializers.
push_back(ConstantInt::get(Int64Ty,
SI->getNumCases()));
898 ConstantInt::get(Int64Ty,
Cond->getType()->getScalarSizeInBits()));
899 if (
Cond->getType()->getScalarSizeInBits() <
900 Int64Ty->getScalarSizeInBits())
902 for (
auto It :
SI->cases()) {
904 if (
C->getType()->getScalarSizeInBits() < 64)
905 C = ConstantInt::get(
C->getContext(),
C->getValue().zext(64));
917 "__sancov_gen_cov_switch_values");
919 auto GateBranch = CreateGateBranch(
F, FunctionGateCmp,
I);
921 GateIRB.CreateCall(SanCovTraceSwitchFunction, {
Cond, GV});
929void ModuleSanitizerCoverage::InjectTraceForDiv(
931 for (
auto *BO : DivTraceTargets) {
933 Value *A1 = BO->getOperand(1);
943 IRB.
CreateCall(SanCovTraceDivFunction[CallbackIdx],
948void ModuleSanitizerCoverage::InjectTraceForGep(
950 for (
auto *
GEP : GepTraceTargets) {
952 for (
Use &Idx :
GEP->indices())
959void ModuleSanitizerCoverage::InjectTraceForLoadsAndStores(
961 auto CallbackIdx = [&](
Type *ElementTy) ->
int {
962 uint64_t
TypeSize =
DL->getTypeStoreSizeInBits(ElementTy);
970 for (
auto *LI : Loads) {
972 auto Ptr = LI->getPointerOperand();
973 int Idx = CallbackIdx(LI->getType());
978 for (
auto *
SI : Stores) {
980 auto Ptr =
SI->getPointerOperand();
981 int Idx = CallbackIdx(
SI->getValueOperand()->getType());
988void ModuleSanitizerCoverage::InjectTraceForCmp(
990 Value *&FunctionGateCmp) {
991 for (
auto *
I : CmpTraceTargets) {
1004 if (CallbackIdx < 0)
1007 auto CallbackFunc = SanCovTraceCmpFunction[CallbackIdx];
1011 if (FirstIsConst && SecondIsConst)
1014 if (FirstIsConst || SecondIsConst) {
1015 CallbackFunc = SanCovTraceConstCmpFunction[CallbackIdx];
1022 auto GateBranch = CreateGateBranch(
F, FunctionGateCmp,
I);
1024 GateIRB.CreateCall(CallbackFunc, {GateIRB.CreateIntCast(A0, Ty,
true),
1025 GateIRB.CreateIntCast(A1, Ty,
true)});
1036 Value *&FunctionGateCmp,
1039 bool IsEntryBB = &BB == &
F.getEntryBlock();
1042 if (
auto SP =
F.getSubprogram())
1059 FunctionGuardArray->getValueType(), FunctionGuardArray, 0, Idx);
1062 auto GateBranch = CreateGateBranch(
F, FunctionGateCmp,
I);
1064 GateIRB.CreateCall(SanCovTracePCGuard, GuardPtr)->setCannotMerge();
1069 if (
Options.Inline8bitCounters) {
1071 Function8bitCounterArray->getValueType(), Function8bitCounterArray,
1072 {ConstantInt::get(IntptrTy, 0), ConstantInt::get(IntptrTy, Idx)});
1074 auto Inc = IRB.
CreateAdd(Load, ConstantInt::get(Int8Ty, 1));
1076 Load->setNoSanitizeMetadata();
1077 Store->setNoSanitizeMetadata();
1081 FunctionBoolArray->getValueType(), FunctionBoolArray,
1082 {ConstantInt::get(IntptrTy, 0), ConstantInt::get(IntptrTy, Idx)});
1089 Load->setNoSanitizeMetadata();
1090 Store->setNoSanitizeMetadata();
1092 if (
Options.StackDepth && IsEntryBB && !IsLeafFunc) {
1096 if (
Options.StackDepthCallbackMin) {
1098 int EstimatedStackSize = 0;
1100 bool HasDynamicAlloc =
false;
1107 for (
auto &
I : BB) {
1113 if (AI->isStaticAlloca()) {
1114 uint32_t Bytes =
DL.getTypeAllocSize(AI->getAllocatedType());
1115 if (AI->isArrayAllocation()) {
1118 Bytes *= arraySize->getZExtValue();
1120 HasDynamicAlloc =
true;
1123 EstimatedStackSize += Bytes;
1125 HasDynamicAlloc =
true;
1130 if (HasDynamicAlloc ||
1131 EstimatedStackSize >=
Options.StackDepthCallbackMin) {
1139 Intrinsic::frameaddress, IRB.
getPtrTy(
DL.getAllocaAddrSpace()),
1140 {Constant::getNullValue(Int32Ty)});
1142 auto LowestStack = IRB.
CreateLoad(IntptrTy, SanCovLowestStack);
1143 auto IsStackLower = IRB.
CreateICmpULT(FrameAddrInt, LowestStack);
1145 IsStackLower, &*IP,
false,
1148 auto Store = ThenIRB.CreateStore(FrameAddrInt, SanCovLowestStack);
1149 LowestStack->setNoSanitizeMetadata();
1150 Store->setNoSanitizeMetadata();
1156ModuleSanitizerCoverage::getSectionName(
const std::string &Section)
const {
1157 if (TargetTriple.isOSBinFormatCOFF()) {
1166 if (TargetTriple.isOSBinFormatMachO())
1172ModuleSanitizerCoverage::getSectionStart(
const std::string &Section)
const {
1173 if (TargetTriple.isOSBinFormatMachO())
1174 return "\1section$start$__DATA$__" +
Section;
1175 return "__start___" +
Section;
1179ModuleSanitizerCoverage::getSectionEnd(
const std::string &Section)
const {
1180 if (TargetTriple.isOSBinFormatMachO())
1181 return "\1section$end$__DATA$__" +
Section;
1185void ModuleSanitizerCoverage::createFunctionControlFlow(
Function &
F) {
1187 IRBuilder<> IRB(&*
F.getEntryBlock().getFirstInsertionPt());
1189 for (
auto &BB :
F) {
1191 if (&BB == &
F.getEntryBlock())
1198 assert(SuccBB != &
F.getEntryBlock());
1205 for (
auto &Inst : BB) {
1210 ConstantInt::get(IntptrTy, -1), PtrTy));
1213 if (CalledF && !CalledF->isIntrinsic())
1222 FunctionCFsArray = CreateFunctionLocalArrayInSection(CFs.
size(),
F, PtrTy,
1224 FunctionCFsArray->setInitializer(
1226 FunctionCFsArray->setConstant(
true);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This is the interface for a simple mod/ref and alias analysis over globals.
Module.h This file contains the declarations for the Module class.
Machine Check Debug Module
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"))
FunctionAnalysisManager FAM
ModuleAnalysisManager MAM
const SmallVectorImpl< MachineOperand > & Cond
static cl::opt< bool > ClLoadTracing("sanitizer-coverage-trace-loads", cl::desc("Tracing of load instructions"), cl::Hidden)
const char SanCovCFsSectionName[]
static bool isFullPostDominator(const BasicBlock *BB, const PostDominatorTree &PDT)
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)
static cl::opt< bool > ClSancovDropCtors("sanitizer-coverage-drop-ctors", cl::desc("do not emit module ctors for global counters"), cl::Hidden)
static cl::opt< bool > ClStackDepth("sanitizer-coverage-stack-depth", cl::desc("max stack depth tracing"), cl::Hidden)
static cl::opt< bool > ClInlineBoolFlag("sanitizer-coverage-inline-bool-flag", cl::desc("sets a boolean flag for every edge"), cl::Hidden)
const char SanCovTraceConstCmp4[]
const char SanCovBoolFlagSectionName[]
const char SanCov8bitCountersInitName[]
const char SanCovTraceSwitchName[]
const char SanCovTraceCmp1[]
const char SanCovModuleCtorTracePcGuardName[]
const char SanCovCountersSectionName[]
static cl::opt< bool > ClCreatePCTable("sanitizer-coverage-pc-table", cl::desc("create a static PC table"), cl::Hidden)
const char SanCovPCsInitName[]
const char SanCovTracePCGuardName[]
static cl::opt< int > ClStackDepthCallbackMin("sanitizer-coverage-stack-depth-callback-min", cl::desc("max stack depth tracing should use callback and only when " "stack depth more than specified"), cl::Hidden)
const char SanCovModuleCtor8bitCountersName[]
const char SanCovTracePCGuardInitName[]
static cl::opt< bool > ClCollectCF("sanitizer-coverage-control-flow", cl::desc("collect control flow for each function"), cl::Hidden)
const char SanCovTraceDiv4[]
static const uint64_t SanCtorAndDtorPriority
const char SanCovBoolFlagInitName[]
static cl::opt< bool > ClGatedCallbacks("sanitizer-coverage-gated-trace-callbacks", cl::desc("Gate the invocation of the tracing callbacks on a global variable" ". Currently only supported for trace-pc-guard and trace-cmp."), cl::Hidden, cl::init(false))
const char SanCovTraceGep[]
const char SanCovLoad16[]
const char SanCovTraceConstCmp8[]
const char SanCovGuardsSectionName[]
const char SanCovStore1[]
const char SanCovTraceConstCmp2[]
const char SanCovTraceConstCmp1[]
static bool IsBackEdge(BasicBlock *From, BasicBlock *To, const DominatorTree &DT)
static cl::opt< bool > ClStoreTracing("sanitizer-coverage-trace-stores", cl::desc("Tracing of store instructions"), cl::Hidden)
const char SanCovCallbackGateName[]
static cl::opt< bool > ClTracePCGuard("sanitizer-coverage-trace-pc-guard", cl::desc("pc tracing with a guard"), cl::Hidden)
const char SanCovTraceDiv8[]
static cl::opt< bool > ClGEPTracing("sanitizer-coverage-trace-geps", cl::desc("Tracing of GEP instructions"), cl::Hidden)
const char SanCovStackDepthCallbackName[]
const char SanCovCFsInitName[]
static cl::opt< bool > ClTracePC("sanitizer-coverage-trace-pc", cl::desc("Experimental pc tracing"), cl::Hidden)
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))
const char SanCovPCsSectionName[]
static bool isFullDominator(const BasicBlock *BB, const DominatorTree &DT)
static cl::opt< bool > ClCMPTracing("sanitizer-coverage-trace-compares", cl::desc("Tracing of CMP and similar instructions"), cl::Hidden)
const char SanCovTraceCmp8[]
const char SanCovCallbackGateSectionName[]
const char SanCovStore16[]
static bool IsInterestingCmp(ICmpInst *CMP, const DominatorTree &DT, const SanitizerCoverageOptions &Options)
static cl::opt< bool > ClDIVTracing("sanitizer-coverage-trace-divs", cl::desc("Tracing of DIV instructions"), cl::Hidden)
static cl::opt< bool > ClInline8bitCounters("sanitizer-coverage-inline-8bit-counters", cl::desc("increments 8-bit counter for every edge"), cl::Hidden)
static bool shouldInstrumentBlock(const Function &F, const BasicBlock *BB, const DominatorTree &DT, const PostDominatorTree &PDT, const SanitizerCoverageOptions &Options)
const char SanCovModuleCtorBoolFlagName[]
const char SanCovTraceCmp2[]
const char SanCovStore8[]
const char SanCovTracePCName[]
const char SanCovStore4[]
const char SanCovTraceCmp4[]
const char SanCovLowestStackName[]
const char SanCovTracePCIndirName[]
This file defines the SmallVector class.
Defines the virtual file system interface vfs::FileSystem.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
size - Get the array size.
bool empty() const
empty - Check if the array is empty.
Class to represent array types.
static LLVM_ABI ArrayType * get(Type *ElementType, uint64_t NumElements)
This static method is the primary way to construct an ArrayType.
LLVM Basic Block Representation.
LLVM_ABI const_iterator getFirstInsertionPt() const
Returns an iterator to the first instruction in this block that is suitable for inserting a non-PHI i...
LLVM_ABI const BasicBlock * getUniqueSuccessor() const
Return the successor of this block if it has a unique successor.
LLVM_ABI const BasicBlock * getSinglePredecessor() const
Return the predecessor of this block if it has a single predecessor block.
InstListType::iterator iterator
Instruction iterators...
LLVM_ABI InstListType::const_iterator getFirstNonPHIOrDbgOrLifetime(bool SkipPseudoOp=true) const
Returns a pointer to the first instruction in this block that is not a PHINode, a debug intrinsic,...
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...
static LLVM_ABI BlockAddress * get(Function *F, BasicBlock *BB)
Return a BlockAddress for the specified function and basic block.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
LLVM_ABI bool isIndirectCall() const
Return true if the callsite is an indirect call.
Value * getCalledOperand() const
static LLVM_ABI Constant * get(ArrayType *T, ArrayRef< Constant * > V)
This is the shared class of boolean and integer constants.
static LLVM_ABI ConstantInt * getTrue(LLVMContext &Context)
This is an important base class in LLVM.
static LLVM_ABI Constant * getAllOnesValue(Type *Ty)
static LLVM_ABI Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
A parsed version of the target data layout string in and methods for querying it.
Analysis pass which computes a DominatorTree.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
LLVM_ABI bool dominates(const BasicBlock *BB, const Use &U) const
Return true if the (end of the) basic block BB dominates the use U.
A handy container for a FunctionType+Callee-pointer pair, which can be passed around as a single enti...
const BasicBlock & getEntryBlock() const
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
LLVM_ABI void setComdat(Comdat *C)
void setLinkage(LinkageTypes LT)
@ HiddenVisibility
The GV is hidden.
void setVisibility(VisibilityTypes V)
LinkageTypes
An enumeration for the kinds of linkage for global values.
@ PrivateLinkage
Like Internal, but omit from symbol table.
@ InternalLinkage
Rename collisions when linking (static functions).
@ LinkOnceAnyLinkage
Keep one copy of function when linking (inline)
@ WeakODRLinkage
Same, but only replaced by something equivalent.
@ ExternalLinkage
Externally visible function.
@ AvailableExternallyLinkage
Available for inspection, not emission.
@ ExternalWeakLinkage
ExternalWeak linkage description.
Analysis pass providing a never-invalidated alias analysis result.
This instruction compares its operands according to the predicate given to the constructor.
Value * CreateICmpULT(Value *LHS, Value *RHS, const Twine &Name="")
Value * CreatePointerCast(Value *V, Type *DestTy, const Twine &Name="")
Value * CreateIntToPtr(Value *V, Type *DestTy, const Twine &Name="")
void SetCurrentDebugLocation(DebugLoc L)
Set location information used by debugging information.
Value * CreateGEP(Type *Ty, Value *Ptr, ArrayRef< Value * > IdxList, const Twine &Name="", GEPNoWrapFlags NW=GEPNoWrapFlags::none())
LLVM_ABI CallInst * CreateIntrinsic(Intrinsic::ID ID, ArrayRef< Type * > Types, ArrayRef< Value * > Args, FMFSource FMFSource={}, const Twine &Name="")
Create a call to intrinsic ID with Args, mangled using Types.
LoadInst * CreateLoad(Type *Ty, Value *Ptr, const char *Name)
Provided to resolve 'CreateLoad(Ty, Ptr, "...")' correctly, instead of converting the string to 'bool...
LLVMContext & getContext() const
Value * CreateConstInBoundsGEP2_64(Type *Ty, Value *Ptr, uint64_t Idx0, uint64_t Idx1, const Twine &Name="")
StoreInst * CreateStore(Value *Val, Value *Ptr, bool isVolatile=false)
Value * CreateAdd(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
Value * CreatePtrToInt(Value *V, Type *DestTy, const Twine &Name="")
Value * CreateIsNotNull(Value *Arg, const Twine &Name="")
Return a boolean value testing if Arg != 0.
CallInst * CreateCall(FunctionType *FTy, Value *Callee, ArrayRef< Value * > Args={}, const Twine &Name="", MDNode *FPMathTag=nullptr)
PointerType * getPtrTy(unsigned AddrSpace=0)
Fetch the type representing a pointer.
Value * CreateIntCast(Value *V, Type *DestTy, bool isSigned, const Twine &Name="")
Value * CreateIsNull(Value *Arg, const Twine &Name="")
Return a boolean value testing if Arg == 0.
void SetInsertPoint(BasicBlock *TheBB)
This specifies that created instructions should be appended to the end of the specified block.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
An instruction for reading from memory.
LLVM_ABI MDNode * createBranchWeights(uint32_t TrueWeight, uint32_t FalseWeight, bool IsExpected=false)
Return metadata containing two branch weights.
LLVM_ABI MDNode * createUnlikelyBranchWeights()
Return metadata containing two branch weights, with significant bias towards false destination.
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
A Module instance is used to store all the information related to an LLVM module.
static PointerType * getUnqual(Type *ElementType)
This constructs a pointer to an object of the specified type in the default address space (address sp...
Analysis pass which computes a PostDominatorTree.
PostDominatorTree Class - Concrete subclass of DominatorTree that is used to compute the post-dominat...
LLVM_ABI 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.
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
PreservedAnalyses & abandon()
Mark an analysis as abandoned.
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
StringRef - Represent a constant reference to a string, i.e.
The instances of the Type class are immutable: once they are created, they are never changed.
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
bool isIntegerTy() const
True if this is an instance of IntegerType.
static LLVM_ABI IntegerType * getIntNTy(LLVMContext &C, unsigned N)
A Use represents the edge between a Value definition and its users.
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
NodeTy * getNextNode()
Get the next node, or nullptr for the list tail.
@ C
The default llvm calling convention, compatible with C.
initializer< Ty > init(const Ty &Val)
static constexpr const StringLiteral & getSectionName(DebugSectionKind SectionKind)
Return the name of the section.
friend class Instruction
Iterator for Instructions in a `BasicBlock.
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
FunctionAddr VTableAddr Value
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
bool succ_empty(const Instruction *I)
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
FunctionAddr VTableAddr uintptr_t uintptr_t Int32Ty
auto successors(const MachineBasicBlock *BB)
InnerAnalysisManagerProxy< FunctionAnalysisManager, Module > FunctionAnalysisManagerModuleProxy
Provide the FunctionAnalysisManager to Module proxy.
LLVM_ABI FunctionCallee declareSanitizerInitFunction(Module &M, StringRef InitName, ArrayRef< Type * > InitArgTypes, bool Weak=false)
LLVM_ABI 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)
LLVM_ABI EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
LLVM_ABI Comdat * getOrCreateFunctionComdat(Function &F, Triple &T)
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
IRBuilder(LLVMContext &, FolderTy, InserterTy, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder< FolderTy, InserterTy >
LLVM_ABI void appendToCompilerUsed(Module &M, ArrayRef< GlobalValue * > Values)
Adds global values to the llvm.compiler.used list.
FunctionAddr VTableAddr Next
ArrayRef(const T &OneElt) -> ArrayRef< T >
bool isAsynchronousEHPersonality(EHPersonality Pers)
Returns true if this personality function catches asynchronous exceptions.
LLVM_ABI 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.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
auto predecessors(const MachineBasicBlock *BB)
bool pred_empty(const BasicBlock *BB)
LLVM_ABI BasicBlock::iterator PrepareToSplitEntryBlock(BasicBlock &BB, BasicBlock::iterator IP)
Instrumentation passes often insert conditional checks into entry blocks.
LLVM_ABI 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 ...
LLVM_ABI void appendToUsed(Module &M, ArrayRef< GlobalValue * > Values)
Adds global values to the llvm.used list.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
This struct is a compact representation of a valid (non-zero power of two) alignment.
Option class for critical edge splitting.
enum llvm::SanitizerCoverageOptions::Type CoverageType