This repository has been archived by the owner on Mar 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[asan] Enable -asan-use-private-alias on Darwin/Mach-O, add test for …
…ODR false positive with LTO (compiler-rt part) The '-asan-use-private-alias’ option (disabled by default) option is currently only enabled for Linux and ELF, but it also works on Darwin and Mach-O. This option also fixes a known problem with LTO on Darwin (google/sanitizers#647). This patch enables the support for Darwin (but still keeps it off by default) and adds the LTO test case. Differential Revision: https://reviews.llvm.org/D24292 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@281472 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
1 parent
a34ebce
commit c888cad
Showing
3 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Check that -asan-use-private-alias and use_odr_indicator=1 silence the false | ||
// positive ODR violation on Darwin with LTO. | ||
|
||
// REQUIRES: lto | ||
|
||
// RUN: %clangxx_asan -DPART=0 -c %s -o %t-1.o -flto | ||
// RUN: %clangxx_asan -DPART=1 -c %s -o %t-2.o -flto | ||
// RUN: %clangxx_asan %t-1.o %t-2.o -o %t -flto | ||
// RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-ODR | ||
|
||
// RUN: %clangxx_asan -DPART=0 -c %s -o %t-1.o -flto -mllvm -asan-use-private-alias | ||
// RUN: %clangxx_asan -DPART=1 -c %s -o %t-2.o -flto -mllvm -asan-use-private-alias | ||
// RUN: %clangxx_asan %t-1.o %t-2.o -o %t -flto | ||
// RUN: %env_asan_opts=use_odr_indicator=1 %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-NO-ODR | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
void putstest(); | ||
|
||
#if PART == 1 | ||
|
||
int main() | ||
{ | ||
fputs("test\n", stderr); | ||
putstest(); | ||
fprintf(stderr, "Done.\n"); | ||
return 0; | ||
} | ||
|
||
#else // PART == 1 | ||
|
||
void putstest() | ||
{ | ||
fputs("test\n", stderr); | ||
} | ||
|
||
#endif // PART == 1 | ||
|
||
// CHECK-ODR: ERROR: AddressSanitizer: odr-violation | ||
// CHECK-NO-ODR-NOT: ERROR: AddressSanitizer: odr-violation | ||
// CHECK-NO-ODR: Done. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters