index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
compiler-rt
/
lib
/
asan
/
asan_fake_stack.cc
Commit message (
Expand
)
Author
Age
Files
Lines
*
[asan] Avoid assert failure for non-default shadow scale
Walter Lee
2017-11-16
1
-2
/
+2
*
[asan] Complete the Fuchsia port
Vitaly Buka
2017-08-09
1
-2
/
+2
*
fix random typos [NFC]
Etienne Bergeron
2016-08-05
1
-1
/
+1
*
[asan] Fix shifting compiler warnings when compiler in 64-bits
Etienne Bergeron
2016-06-21
1
-2
/
+2
*
[compiler-rt] Fix build (again) by wrapping lines to 80 chars (NFC)
Vedant Kumar
2015-10-01
1
-1
/
+2
*
[compiler-rt] Apply modernize-use-nullptr fixes in sanitizers
Vedant Kumar
2015-10-01
1
-9
/
+10
*
Try to fix the MSVC build now that we use /Zc:inline.
Rafael Espindola
2015-08-12
1
-0
/
+2
*
[ASan] New approach to dynamic allocas unpoisoning. Patch by Max Ostapenko!
Yury Gribov
2015-05-28
1
-0
/
+23
*
[asan] Allow changing verbosity in activation flags.
Evgeniy Stepanov
2015-01-20
1
-1
/
+1
*
[ASan] Change fake stack and local variables handling.
Alexey Samsonov
2014-12-11
1
-11
/
+10
*
[ASan] Get fake stack code working with GCC 4.8.2.
Jay Foad
2014-11-21
1
-1
/
+3
*
[asan] introduce two functions that will allow implementations of C++ garbage...
Kostya Serebryany
2014-02-06
1
-4
/
+28
*
[asan] replace the flag uar_stack_size_log with two flags min_uar_stack_size_...
Kostya Serebryany
2013-12-16
1
-2
/
+2
*
[asan] add flag uar_noreserve to use noreserve mmap for fake stack. uar_nores...
Kostya Serebryany
2013-12-13
1
-3
/
+7
*
[asan] when a fake stack is being unmapped also flush the corresponding shadow
Kostya Serebryany
2013-12-11
1
-1
/
+3
*
[asan] if verbosity>=2, print the fake stack usage stats at thread exit; No f...
Kostya Serebryany
2013-12-11
1
-1
/
+8
*
[sanitizer] Introduce VReport and VPrintf macros and use them in sanitizer code.
Sergey Matveev
2013-12-05
1
-6
/
+4
*
tsan: move verbosity flag to CommonFlags
Dmitry Vyukov
2013-10-15
1
-1
/
+1
*
[lsan] Support ASan's stack-use-after-return mode in LSan.
Sergey Matveev
2013-10-14
1
-0
/
+14
*
[asan] introduce run-time flag uar_stack_size_log to control the size of Fake...
Kostya Serebryany
2013-09-27
1
-2
/
+27
*
[asan] add a run-time option detect_stack_use_after_return, add verbosity out...
Kostya Serebryany
2013-09-18
1
-0
/
+2
*
[asan] further speedup use-after-return: simplify deallocation of fake frames...
Kostya Serebryany
2013-09-17
1
-16
/
+2
*
[asan] Android does not have TLS
Kostya Serebryany
2013-09-13
1
-2
/
+2
*
[asan] don't record the class_id in FakeFrame (scratching the last bits of pe...
Kostya Serebryany
2013-09-13
1
-1
/
+0
*
[asan] more performance to FakeStack: a) don't used atomic exchange, instead ...
Kostya Serebryany
2013-09-13
1
-13
/
+15
*
[asan] second attempt to use TLS with fake stack. This time it looks (more) a...
Kostya Serebryany
2013-09-13
1
-7
/
+16
*
[asan] undo the previous commit since TLS hack breaks with signals... :(
Kostya Serebryany
2013-09-13
1
-1
/
+1
*
[asan] use TLS on Linux to get the FakeStack. Saves 15% performance
Kostya Serebryany
2013-09-13
1
-6
/
+19
*
[asan] inline PoisonShadow in FakeStack to get ~10% speedup
Kostya Serebryany
2013-09-13
1
-2
/
+20
*
[asan] a bit of performance improvement in fake stack, generalized one test, ...
Kostya Serebryany
2013-09-12
1
-0
/
+2
*
[asan] add a test for use-after-return and exceptions and fix it. Not 100% su...
Kostya Serebryany
2013-09-12
1
-0
/
+32
*
[asan] hopefully make the FakeStack async-signal safe, enable the related test
Kostya Serebryany
2013-09-12
1
-0
/
+1
*
[asan] use xchg instead of CAS in FakeStack::Allocate (5% faster for this case)
Kostya Serebryany
2013-09-12
1
-3
/
+2
*
[asan] fully re-implement the FakeStack (use-after-return) to make it faster ...
Kostya Serebryany
2013-09-12
1
-142
/
+57
*
[asan] refactor the use-after-return API so that the size class is computed a...
Kostya Serebryany
2013-09-10
1
-44
/
+63
*
[asan] make use-after-return handle very deep recursion; fixes 483.xalancbmk ...
Kostya Serebryany
2013-09-04
1
-4
/
+6
*
[asan]: fix a CHECK failure in use-after-return mode; enable and fix stack-us...
Kostya Serebryany
2013-08-28
1
-3
/
+3
*
[asan] Limit fake stack size to a reasonable value when running with unlimite...
Evgeniy Stepanov
2013-07-30
1
-1
/
+4
*
[asan] initialize fake_stack lazily and increase its maximal size. This makes...
Kostya Serebryany
2013-06-26
1
-6
/
+2
*
Fix MSVC W3 compiler warnings
Timur Iskhodzhanov
2013-05-29
1
-1
/
+1
*
[asan] improve the UAR reporting (try harder to find the correct frame), try ...
Kostya Serebryany
2013-04-11
1
-13
/
+15
*
[sanitizer] found a bug by code inspection: CHECK(a=b) instead of CHECK(a==b)...
Kostya Serebryany
2013-04-05
1
-4
/
+4
*
[ASan] Speed-up initialization-order checking: create and use fast versions o...
Alexey Samsonov
2013-03-28
1
-0
/
+1
*
[ASan] Switch ASan to generic ThreadRegistry from sanitizer_common. Delete AS...
Alexey Samsonov
2013-03-21
1
-1
/
+0
*
[ASan] Move GetCurrentThread/SetCurrentThread from AsanThreadRegistry class i...
Alexey Samsonov
2013-03-20
1
-2
/
+2
*
[ASan] Split ASan interface header into private and public parts. Add a test ...
Alexey Samsonov
2013-01-31
1
-1
/
+0
*
[asan] move FakeStack into a separate file
Kostya Serebryany
2012-12-10
1
-0
/
+182