Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp267 GlobalVariable *SanCovLowestStack; member in __anon0eb498d60111::ModuleSanitizerCoverage
470 SanCovLowestStack = dyn_cast<GlobalVariable>(SanCovLowestStackConstant); in instrumentModule()
471 if (!SanCovLowestStack || SanCovLowestStack->getValueType() != IntptrTy) { in instrumentModule()
476 SanCovLowestStack->setThreadLocalMode( in instrumentModule()
478 if (Options.StackDepth && !SanCovLowestStack->isDeclaration()) in instrumentModule()
479 SanCovLowestStack->setInitializer(Constant::getAllOnesValue(IntptrTy)); in instrumentModule()
1005 auto LowestStack = IRB.CreateLoad(IntptrTy, SanCovLowestStack); in InjectCoverageAtBlock()
1011 auto Store = ThenIRB.CreateStore(FrameAddrInt, SanCovLowestStack); in InjectCoverageAtBlock()