Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add address space mangling to lifetime intrinsics | Matt Arsenault | 2017-04-10 | 1 | -6/+6 |
| | | | | | | In preparation for allowing allocas to have non-0 addrspace. llvm-svn: 299876 | ||||
* | [asan] Enable new stack poisoning with store instruction by default | Vitaly Buka | 2016-08-29 | 1 | -6/+14 |
| | | | | | | | | | | Reviewers: eugenis Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D23968 llvm-svn: 279993 | ||||
* | Unpoison stack before resume instruction | Vitaly Buka | 2016-07-22 | 1 | -0/+106 |
Summary: Clang inserts cleanup code before resume similar way as before return instruction. This makes asan poison local variables causing false use-after-scope reports. __asan_handle_no_return does not help here as it was executed before llvm.lifetime.end inserted into resume block. To avoid false report we need to unpoison stack for resume same way as for return. PR27453 Reviewers: kcc, eugenis Differential Revision: https://reviews.llvm.org/D22661 llvm-svn: 276480 |