• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..07-May-2022-

asan/H28-Jul-2021-15,12911,085

builtins/H28-Jul-2021-201155

hwasan/H28-Jul-2021-5,5053,971

include/H28-Jul-2021-9,9138,520

interception/H28-Jul-2021-2,3571,640

libbacktrace/H28-Jul-2021-1,121874

lsan/H28-Jul-2021-4,6763,479

sanitizer_common/H28-Jul-2021-63,85252,333

tsan/H28-Jul-2021-21,19016,431

ubsan/H28-Jul-2021-4,6303,281

ChangeLogH A D28-Jul-202171.1 KiB2,2181,673

HOWTO_MERGEH A D28-Jul-20212.8 KiB4442

LOCAL_PATCHESH A D28-Jul-202182 32

MERGEH A D28-Jul-2021156 53

Makefile.amH A D28-Jul-20212.1 KiB7964

Makefile.inH A D28-Jul-202124.7 KiB793693

README.gccH A D28-Jul-2021936 2219

acinclude.m4H A D28-Jul-2021446 1311

aclocal.m4H A D28-Jul-202143.4 KiB1,2031,093

config.h.inH A D28-Jul-20214 KiB164115

configureH A D28-Jul-2021592.1 KiB20,12116,855

configure.acH A D28-Jul-202111.7 KiB416360

configure.tgtH A D28-Jul-20212.1 KiB7874

libsanitizer.spec.inH A D28-Jul-2021310 147

merge.shH A D28-Jul-20212.1 KiB8963

README.gcc

1AddressSanitizer and ThreadSanitizer (https://github.com/google/sanitizers) are
2projects initially developed by Google Inc.
3
4Both tools consist of a compiler module and a run-time library.
5The sources of the run-time library for these projects are hosted at
6https://github.com/llvm/llvm-project in the following directories:
7  compiler-rt/include/sanitizer
8  compiler-rt/lib/sanitizer_common
9  compiler-rt/lib/interception
10  compiler-rt/lib/asan
11  compiler-rt/lib/tsan
12  compiler-rt/lib/lsan
13  compiler-rt/lib/ubsan
14  compiler-rt/lib/hwasan
15
16Trivial and urgent fixes (portability, build fixes, etc.) may go directly to the
17GCC tree.  All non-trivial changes, functionality improvements, etc. should go
18through the upstream tree first and then be merged back to the GCC tree.
19The merges from upstream should be done with the aid of the merge.sh script;
20it will also update the file MERGE to contain the upstream revision
21we merged with.
22