diff options
| author | Kostya Serebryany <kcc@google.com> | 2012-03-19 16:40:35 +0000 |
|---|---|---|
| committer | Kostya Serebryany <kcc@google.com> | 2012-03-19 16:40:35 +0000 |
| commit | c58dc9fcd2bca6534613a0e30971a3e2acbe231b (patch) | |
| tree | d32a183e7ce9ef39e899a31e9d563b031895308c /llvm | |
| parent | 4ac72dd982539d681eb0ab988ccbb6f4594c6ecc (diff) | |
| download | bcm5719-llvm-c58dc9fcd2bca6534613a0e30971a3e2acbe231b.tar.gz bcm5719-llvm-c58dc9fcd2bca6534613a0e30971a3e2acbe231b.zip | |
[asan] don't emit __asan_mapping_offset/__asan_mapping_scale by default -- they are currently used only for experiments
llvm-svn: 153040
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp index 544e22cc017..a51bd7e41c8 100644 --- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp @@ -579,18 +579,23 @@ bool AddressSanitizer::runOnModule(Module &M) { if (ClGlobals) Res |= insertGlobalRedzones(M); - // Tell the run-time the current values of mapping offset and scale. - GlobalValue *asan_mapping_offset = - new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage, - ConstantInt::get(IntptrTy, MappingOffset), - kAsanMappingOffsetName); - GlobalValue *asan_mapping_scale = - new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage, - ConstantInt::get(IntptrTy, MappingScale), - kAsanMappingScaleName); - // Read these globals, otherwise they may be optimized away. - IRB.CreateLoad(asan_mapping_scale, true); - IRB.CreateLoad(asan_mapping_offset, true); + if (ClMappingOffsetLog >= 0) { + // Tell the run-time the current values of mapping offset and scale. + GlobalValue *asan_mapping_offset = + new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage, + ConstantInt::get(IntptrTy, MappingOffset), + kAsanMappingOffsetName); + // Read the global, otherwise it may be optimized away. + IRB.CreateLoad(asan_mapping_offset, true); + } + if (ClMappingScale) { + GlobalValue *asan_mapping_scale = + new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage, + ConstantInt::get(IntptrTy, MappingScale), + kAsanMappingScaleName); + // Read the global, otherwise it may be optimized away. + IRB.CreateLoad(asan_mapping_scale, true); + } for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) { |

