Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [ASan] move all lit_tests under TestCases | Alexey Samsonov | 2013-06-06 | 1 | -36/+0 |
| | | | | llvm-svn: 183395 | ||||
* | Call __asan_free_hook() before marking the chunk quarantinned | Alexey Samsonov | 2013-06-04 | 1 | -2/+14 |
| | | | | | | | | | | | | | | | | | | | | | Summary: With this change, the user may safely call __asan_get_ownership() from malloc/free hooks and assume it would return "true". If there is a realloc/free race, free hook might be called twice, but I think it's acceptable, as it's a data race and would later be reported anyway. This change also fixes a bug when failing realloc incorrectly marked the original memory as "quarantinned". Reviewers: timurrrr, kcc, samsonov Reviewed By: samsonov CC: llvm-commits Differential Revision: http://llvm-reviews.chandlerc.com/D913 llvm-svn: 183220 | ||||
* | [ASan] use write instead of puts in malloc hooks test for ASan, as puts ↵ | Alexey Samsonov | 2012-08-22 | 1 | -3/+7 |
| | | | | | | calls malloc on Mac llvm-svn: 162359 | ||||
* | [ASan] make ASan malloc/free hooks weak interface functions, overridable by ↵ | Alexey Samsonov | 2012-08-22 | 1 | -0/+20 |
user. Now the user can control malloc/free hooks without recompiling ASan runtime llvm-svn: 162355 |