summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/asan/tests/asan_internal_interface_test.cc
Commit message (Collapse)AuthorAgeFilesLines
* compiler-rt: Rename .cc file in lib/asan/tests to .cppNico Weber2019-08-011-36/+0
| | | | | | Like r367463, but for asan/tests llvm-svn: 367559
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
| | | | | | | | | | | | | | | | | to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
* [asan] Remove `using std::vector` and `using std::map`Alexander Kornienko2017-02-061-0/+1
| | | | | | Looks like these are not needed anymore. llvm-svn: 294200
* [asan] Fix OOB_char on arm 32bitVitaly Buka2016-08-231-1/+1
| | | | | | | | | | | | | | | | Summary: This does not actually fixes the test. AddressSanitizer::OOB_char behavior is inconsistent but it somehow usually works. On arm it runs more iterations than expected. And adding a new test with AddressSanitizerInterface prefix, even empty, somehow breaks OOB_char test. So I will rename my test to make the bot green and will continue to investigate the test. Reviewers: krasin Subscribers: aemerson, rengolin, kubabrecka, llvm-commits, samparker Differential Revision: https://reviews.llvm.org/D23790 llvm-svn: 279501
* [asan] Add __asan_set_shadow_*Vitaly Buka2016-08-181-0/+36
Summary: We are poisoning small allocas using store instruction from instrumented code. For larger allocas we'd like to insert function calls instead of multiple stores. PR27453 Reviewers: kcc, eugenis Subscribers: llvm-commits, kubabrecka Differential Revision: https://reviews.llvm.org/D23616 llvm-svn: 279019
OpenPOWER on IntegriCloud