aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/compound-assign-overflow.c
AgeCommit message (Collapse)AuthorFilesLines
2017-02-25[ubsan] Omit superflous overflow checks for promoted arithmetic (PR20193)Vedant Kumar1-3/+1
C requires the operands of arithmetic expressions to be promoted if their types are smaller than an int. Ubsan emits overflow checks when this sort of type promotion occurs, even if there is no way to actually get an overflow with the promoted type. This patch teaches clang how to omit the superflous overflow checks (addressing PR20193). Testing: check-clang and check-ubsan. Differential Revision: https://reviews.llvm.org/D29369 llvm-svn: 296213
2015-01-12Reimplement -fsanitize-recover family of flags.Alexey Samsonov1-1/+1
Introduce the following -fsanitize-recover flags: - -fsanitize-recover=<list>: Enable recovery for selected checks or group of checks. It is forbidden to explicitly list unrecoverable sanitizers here (that is, "address", "unreachable", "return"). - -fno-sanitize-recover=<list>: Disable recovery for selected checks or group of checks. - -f(no-)?sanitize-recover is now a synonym for -f(no-)?sanitize-recover=undefined,integer and will soon be deprecated. These flags are parsed left to right, and mask of "recoverable" sanitizer is updated accordingly, much like what we do for -fsanitize= flags. -fsanitize= and -fsanitize-recover= flag families are independent. CodeGen change: If there is a single UBSan handler function, responsible for implementing multiple checks, which have different recoverable setting, then we emit two handler calls instead of one: the first one for the set of "unrecoverable" checks, another one - for set of "recoverable" checks. If all checks implemented by a handler have the same recoverability setting, then the generated code will be the same. llvm-svn: 225719
2013-11-08ubsan: Only emit constants for filenames and type descriptors once.Will Dietz1-2/+1
Produces neater IR in significantly less time. (~18% faster -O0 compile time for sqlite3 with -fsanitize=undefined) llvm-svn: 194231
2013-01-09[ubsan] Make static check data non-const so it can be used for deduplication.Will Dietz1-3/+3
llvm-svn: 171947
2013-01-08CodeGen/compound-assign-overflow.c: include stdint.h in freestanding modeDmitri Gribenko1-1/+1
This hopefully fixes the ARM buildbot. llvm-svn: 171853
2013-01-07[ubsan] Use correct type for compound assignment ops.Will Dietz1-0/+36
llvm-svn: 171801