Home
last modified time | relevance | path

Searched refs:SanCovLowestStack (Results 1 – 1 of 1) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp263 GlobalVariable *SanCovLowestStack; member in __anonac98908c0111::ModuleSanitizerCoverage
466 SanCovLowestStack = dyn_cast<GlobalVariable>(SanCovLowestStackConstant); in instrumentModule()
467 if (!SanCovLowestStack || SanCovLowestStack->getValueType() != IntptrTy) { in instrumentModule()
472 SanCovLowestStack->setThreadLocalMode( in instrumentModule()
474 if (Options.StackDepth && !SanCovLowestStack->isDeclaration()) in instrumentModule()
475 SanCovLowestStack->setInitializer(Constant::getAllOnesValue(IntptrTy)); in instrumentModule()
998 auto LowestStack = IRB.CreateLoad(IntptrTy, SanCovLowestStack); in InjectCoverageAtBlock()
1002 auto Store = ThenIRB.CreateStore(FrameAddrInt, SanCovLowestStack); in InjectCoverageAtBlock()