forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[compiler-rt][nsan] Add check-cmp flag (llvm#108707)
Add check-cmp flag. Closes llvm#108435.
- Loading branch information
Showing
3 changed files
with
34 additions
and
3 deletions.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// RUN: %clangxx_nsan -O2 -g %s -o %t | ||
// RUN: env NSAN_OPTIONS=check_cmp=true,halt_on_error=0 %run %t 2>&1 | FileCheck %s -check-prefix=CMP_ENABLE | ||
// RUN: env NSAN_OPTIONS=check_cmp=false,halt_on_error=0 %run %t 2>&1 | FileCheck %s -check-prefix=CMP_DISABLE | ||
|
||
#include <cmath> | ||
#include <cstdio> | ||
|
||
// 0.6/0.2 is slightly below 3, so the comparison will fail after a certain | ||
// threshold that depends on the precision of the computation. | ||
__attribute__((noinline)) // To check call stack reporting. | ||
bool DoCmp(double a, double b, double c, double threshold) { | ||
return c - a / b < threshold; | ||
// CMP_ENABLE: WARNING: NumericalStabilitySanitizer: floating-point comparison results depend on precision | ||
// CMP_ENABLE: double {{ *}}precision dec (native): {{.*}}<{{.*}} | ||
// CMP_ENABLE: __float128{{ *}}precision dec (shadow): {{.*}}<{{.*}} | ||
// CMP_ENABLE: {{#0 .*in DoCmp}} | ||
} | ||
|
||
int main() { | ||
double threshold = 1.0; | ||
for (int i = 0; i < 60; ++i) { | ||
threshold /= 2; | ||
// CMP_DISABLE: value at threshold {{.*}} | ||
printf("value at threshold %.20f: %i\n", threshold, | ||
DoCmp(0.6, 0.2, 3.0, threshold)); | ||
} | ||
return 0; | ||
} |