diff options
author | Kostya Serebryany <kcc@google.com> | 2013-03-18 09:38:39 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2013-03-18 09:38:39 +0000 |
commit | 10cc12f2b79058c68f305c1e5601e2c0438dc3e6 (patch) | |
tree | 38ddfcc591065b149ff09f04b90298227ca52b0c /llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp | |
parent | 6488b2b257c820fe0515b1acf00024bc30024924 (diff) | |
download | bcm5719-llvm-10cc12f2b79058c68f305c1e5601e2c0438dc3e6.tar.gz bcm5719-llvm-10cc12f2b79058c68f305c1e5601e2c0438dc3e6.zip |
[asan] when creating string constants, set unnamed_attr and align 1 so that equal strings are merged by the linker. Observed up to 1% binary size reduction. Thanks to Anton Korobeynikov for the suggestion
llvm-svn: 177264
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp index 614dc210a03..92b42ee64b0 100644 --- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp @@ -531,9 +531,12 @@ static size_t TypeSizeToSizeIndex(uint32_t TypeSize) { // Create a constant for Str so that we can pass it to the run-time lib. static GlobalVariable *createPrivateGlobalForString(Module &M, StringRef Str) { Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str); - return new GlobalVariable(M, StrConst->getType(), true, + GlobalVariable *GV = new GlobalVariable(M, StrConst->getType(), true, GlobalValue::PrivateLinkage, StrConst, kAsanGenPrefix); + GV->setUnnamedAddr(true); // Ok to merge these. + GV->setAlignment(1); // Strings may not be merged w/o setting align 1. + return GV; } static bool GlobalWasGeneratedByAsan(GlobalVariable *G) { |