mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Base check on the section name, not the variable name.
The variable is private, so the name should not be relied on. Also, the linker uses the sections, so asan should too when trying to avoid causing the linker problems. llvm-svn: 221480
This commit is contained in:
parent
fd4cd4028c
commit
d7b6449512
@ -971,16 +971,6 @@ bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
|
||||
// For now, just ignore this Global if the alignment is large.
|
||||
if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
|
||||
|
||||
// Ignore all the globals with the names starting with "\01L_OBJC_".
|
||||
// Many of those are put into the .cstring section. The linker compresses
|
||||
// that section by removing the spare \0s after the string terminator, so
|
||||
// our redzones get broken.
|
||||
if ((G->getName().find("\01L_OBJC_") == 0) ||
|
||||
(G->getName().find("\01l_OBJC_") == 0)) {
|
||||
DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G << "\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
if (G->hasSection()) {
|
||||
StringRef Section(G->getSection());
|
||||
// Ignore the globals from the __OBJC section. The ObjC runtime assumes
|
||||
@ -1009,6 +999,11 @@ bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
|
||||
DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");
|
||||
return false;
|
||||
}
|
||||
if (Section.startswith("__TEXT,__objc_methname,cstring_literals")) {
|
||||
DEBUG(dbgs() << "Ignoring objc_methname cstring global: " << *G << "\n");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
// Callbacks put into the CRT initializer/terminator sections
|
||||
// should not be instrumented.
|
||||
|
@ -0,0 +1,7 @@
|
||||
; RUN: opt < %s -asan -asan-module -S | FileCheck %s
|
||||
|
||||
target datalayout = "e"
|
||||
|
||||
@foo = private global [19 x i8] c"scannerWithString:\00", section "__TEXT,__objc_methname,cstring_literals"
|
||||
|
||||
; CHECK: @foo = private global [19 x i8] c"scannerWithString:\00", section "__TEXT,__objc_methname,cstring_literals"
|
Loading…
Reference in New Issue
Block a user