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
Commit message (
Expand
)
Author
Age
Files
Lines
*
AddressSanitizer: revert r150683 - we can't get rid of headers that easily
Alexey Samsonov
2012-02-16
2
-12
/
+12
*
[asan] Allocator tweaks for low memory systems.
Evgeniy Stepanov
2012-02-16
4
-5
/
+30
*
AddressSanitizer: don't include pthread.h and signal.h in interceptors on Mac
Alexey Samsonov
2012-02-16
2
-12
/
+12
*
[asan] don't do AsanDie twice
Kostya Serebryany
2012-02-16
1
-0
/
+2
*
AddressSanitizer: don't include pthread.h in asan_interceptors.cc on Linux
Alexey Samsonov
2012-02-15
1
-4
/
+3
*
AddressSanitizer: simplify IntervalsAreSeparate function
Alexey Samsonov
2012-02-15
1
-12
/
+3
*
[ASan] Define an internal implementation of strchr to make stack OOB tests pa...
Timur Iskhodzhanov
2012-02-14
3
-1
/
+12
*
[asan] Add lots of missing visibility attributes.
Evgeniy Stepanov
2012-02-14
1
-11
/
+22
*
[asan] implement __asan_set_death_callback
Kostya Serebryany
2012-02-13
6
-24
/
+49
*
Fix compilation on Mac.
Alexander Potapenko
2012-02-13
1
-0
/
+1
*
Lint fix
Alexander Potapenko
2012-02-13
1
-2
/
+2
*
Move the non-trivial implementation of AsanShadowRangeIsAvailable to asan_mac.cc
Alexander Potapenko
2012-02-13
5
-37
/
+48
*
Check whether the shadow memory range intersects with an existing mapping.
Alexander Potapenko
2012-02-13
1
-1
/
+41
*
AddressSanitizer: re-enable lint for output tests
Alexey Samsonov
2012-02-13
5
-5
/
+9
*
AddressSanitizer: fix llvm headers in output tests
Alexey Samsonov
2012-02-13
4
-4
/
+4
*
AddressSanitizer: remove match_output.py, split expected output into OS-speci...
Alexey Samsonov
2012-02-13
14
-144
/
+97
*
[asan] Add a missing include.
Evgeniy Stepanov
2012-02-13
1
-0
/
+1
*
[asan] Add a missing return.
Evgeniy Stepanov
2012-02-13
1
-0
/
+1
*
AddressSanitizer: Convert templates for output tests to FileCheck format and ...
Alexey Samsonov
2012-02-13
29
-111
/
+119
*
[asan] Return type of index() is char*.
Evgeniy Stepanov
2012-02-13
1
-2
/
+2
*
[asan] Disable signal&sigaction interceptors on Android.
Evgeniy Stepanov
2012-02-13
1
-1
/
+11
*
[asan] Default visibility for __asan_handle_no_return.
Evgeniy Stepanov
2012-02-13
1
-0
/
+1
*
[asan] Fix a crash in GetCurrent() of an undead thread.
Evgeniy Stepanov
2012-02-13
1
-1
/
+1
*
AddressSanitizer: fix path to FileCheck in makefiles
Alexey Samsonov
2012-02-13
2
-2
/
+3
*
AddressSanitizer: move output tests to a separate directory
Alexey Samsonov
2012-02-13
34
-1
/
+1
*
AddressSanitizer: Use FileCheck instead of grep for pure C output tests
Alexey Samsonov
2012-02-13
2
-4
/
+22
*
Back out some changes that accidentally committed.
Bob Wilson
2012-02-10
10
-29
/
+3
*
Revert r150232 since it breaks the build when there's no ARM assembler.
Bob Wilson
2012-02-10
11
-16
/
+37
*
make/clang_darwin: Tweak CheckArches function to force the integrated-as and use
Daniel Dunbar
2012-02-10
1
-8
/
+13
*
[asan] The first version of the RTL for Windows, reviewed at http://coderevie...
Timur Iskhodzhanov
2012-02-09
5
-4
/
+308
*
Test commit + fix an obvious typo
Timur Iskhodzhanov
2012-02-09
1
-1
/
+1
*
AddressSanitizer: move mach_override inside interception library
Alexey Samsonov
2012-02-09
9
-8
/
+8
*
[asan] unpoison the stack before every noreturn call. Fixes asan issue 37. rt...
Kostya Serebryany
2012-02-08
5
-14
/
+51
*
AddressSanitizer: start factoring out interception machinery
Alexey Samsonov
2012-02-08
13
-178
/
+364
*
Move the _ReturnAddress definition out of the __asan:: namespace
Alexander Potapenko
2012-02-08
1
-2
/
+3
*
AddressSanitizer: replace all "real_X" calls with "REAL(X)"
Alexey Samsonov
2012-02-08
12
-71
/
+72
*
Typo fix: s/SNPrint/SNPrintf
Alexander Potapenko
2012-02-08
1
-1
/
+1
*
[asan] better warning messages for double-free bugs (provide allocation/deall...
Kostya Serebryany
2012-02-08
2
-2
/
+6
*
[asan] GET_CALLER_PC macro for Win. Patch by timurrrr@google.com
Kostya Serebryany
2012-02-07
1
-5
/
+9
*
[asan] print 'ALL TESTS PASSED' in makefile when running tests (convenience)
Kostya Serebryany
2012-02-07
1
-0
/
+1
*
[asan] don't crash if /proc/self/maps has enormous size (linux)
Kostya Serebryany
2012-02-07
1
-2
/
+2
*
[asan] make sure the AsanThread object is destroyed if pthread_exit is called
Kostya Serebryany
2012-02-07
6
-9
/
+34
*
[asan] use raw syscalls for open/close on linux to avoid being intercepted
Kostya Serebryany
2012-02-06
1
-2
/
+2
*
[asan] The first version of Windows malloc interceptors, patch by timurrrr@go...
Kostya Serebryany
2012-02-06
1
-0
/
+57
*
On Apple platforms, wire up compilerrt_abort() to log file and function info
Nick Kledzik
2012-02-03
1
-0
/
+13
*
Remove __attribute__((weak)) on function prototype. It has a different meani...
Nick Kledzik
2012-02-03
1
-5
/
+2
*
AddressSanitizer: simplify RoundUpToPowerOfTwo/clz; add a couple of CHECKs fo...
Alexey Samsonov
2012-02-03
2
-19
/
+14
*
AddressSanitizer: Replace __attribute__ with macro (for Win compatibility). P...
Alexey Samsonov
2012-02-03
4
-12
/
+22
*
AddressSanitizer: Add macro for definition/declaration of interceptors
Alexey Samsonov
2012-02-02
5
-264
/
+152
*
Disable wrapping memcpy() on Mac OS Lion, where it
Alexander Potapenko
2012-02-01
1
-1
/
+15
[next]