reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Instrumentation/AddressSanitizer.cpp
 1803   Type *Ty = G->getValueType();
 1804   LLVM_DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
 1808   if (GlobalsMD.get(G).IsBlacklisted) return false;
 1810   if (!G->hasInitializer()) return false;
 1811   if (GlobalWasGeneratedByCompiler(G)) return false; // Our own globals.
 1815   if (G->isThreadLocal()) return false;
 1817   if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
 1824     if (!G->hasExactDefinition() || G->hasComdat())
 1824     if (!G->hasExactDefinition() || G->hasComdat())
 1828     if (G->isInterposable())
 1834   if (Comdat *C = G->getComdat()) {
 1846   if (G->hasSection()) {
 1847     StringRef Section = G->getSection();
 1872                         << *G << "\n");
 1889         LLVM_DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n");
 1901         LLVM_DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n");
 1907         LLVM_DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");