diff options
author | Alexey Samsonov <vonosmas@gmail.com> | 2014-07-18 17:50:06 +0000 |
---|---|---|
committer | Alexey Samsonov <vonosmas@gmail.com> | 2014-07-18 17:50:06 +0000 |
commit | 6c12414358031407667b75657b9d768080f16409 (patch) | |
tree | fdca701ab7a2c9095e7d95de449b704f5347caed /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 54502402193e5d58a450dd7d8b30c46ae9bbe484 (diff) | |
download | llvm-6c12414358031407667b75657b9d768080f16409.zip llvm-6c12414358031407667b75657b9d768080f16409.tar.gz llvm-6c12414358031407667b75657b9d768080f16409.tar.bz2 |
Make sure globals created by UBSan are not instrumented by ASan.
Summary:
This change adds description of globals created by UBSan
instrumentation (UBSan handlers, type descriptors, filenames) to
llvm.asan.globals metadata, effectively "blacklisting" them. This can
dramatically decrease the data section in binaries built with UBSan+ASan,
as UBSan tends to create a lot of handlers, and ASan instrumentation
increases the global size to at least 64 bytes.
Test Plan: clang regression test suite
Reviewers: rsmith
Reviewed By: rsmith
Subscribers: cfe-commits, byoungyoung, kcc
Differential Revision: http://reviews.llvm.org/D4575
llvm-svn: 213392
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index 6c33f92..bd7acf9 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -1951,11 +1951,11 @@ void CodeGenModule::EmitGlobalVarDefinition(const VarDecl *D) { void CodeGenModule::reportGlobalToASan(llvm::GlobalVariable *GV, SourceLocation Loc, StringRef Name, - bool IsDynInit) { + bool IsDynInit, bool IsBlacklisted) { if (!LangOpts.Sanitize.Address) return; IsDynInit &= !SanitizerBL.isIn(*GV, "init"); - bool IsBlacklisted = SanitizerBL.isIn(*GV); + IsBlacklisted |= SanitizerBL.isIn(*GV); llvm::GlobalVariable *LocDescr = nullptr; llvm::GlobalVariable *GlobalName = nullptr; @@ -2008,6 +2008,13 @@ void CodeGenModule::reportGlobalToASan(llvm::GlobalVariable *GV, reportGlobalToASan(GV, D.getLocation(), OS.str(), IsDynInit); } +void CodeGenModule::disableSanitizerForGlobal(llvm::GlobalVariable *GV) { + // For now, just make sure the global is not modified by the ASan + // instrumentation. + if (LangOpts.Sanitize.Address) + reportGlobalToASan(GV, SourceLocation(), "", false, true); +} + static bool isVarDeclStrongDefinition(const VarDecl *D, bool NoCommon) { // Don't give variables common linkage if -fno-common was specified unless it // was overridden by a NoCommon attribute. |