Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp2568 GlobalVariable *NewGlobal = new GlobalVariable( in instrumentGlobals() local
2571 NewGlobal->copyAttributesFrom(G); in instrumentGlobals()
2572 NewGlobal->setComdat(G->getComdat()); in instrumentGlobals()
2573 NewGlobal->setAlignment(Align(getMinRedzoneSizeForGlobal())); in instrumentGlobals()
2577 NewGlobal->setUnnamedAddr(GlobalValue::UnnamedAddr::None); in instrumentGlobals()
2584 NewGlobal->setSection("__TEXT,__asan_cstring,regular"); in instrumentGlobals()
2589 NewGlobal->copyMetadata(G, 0); in instrumentGlobals()
2596 ConstantExpr::getGetElementPtr(NewTy, NewGlobal, Indices2, true)); in instrumentGlobals()
2597 NewGlobal->takeName(G); in instrumentGlobals()
2599 NewGlobals[i] = NewGlobal; in instrumentGlobals()
[all …]