- b50a539 [asan] move build-time config options from makefile to source (otherwise we need config options in all makefiles) by Kostya Serebryany · 13 years ago
- a8ad183 platform/clang_linux: Switch builtin and profile libraries to build using the by Daniel Dunbar · 13 years ago
- 8142a9f SDKs: Sketch an initial stub SDK for Linux, I believe this suffices for building by Daniel Dunbar · 13 years ago
- f0d799a [asan] fix the error message for 16-byte accesses (it previously printed 'unknown-crash') by Kostya Serebryany · 13 years ago
- 6d4db89 www: Add some more notes to compiler-rt web page. by Daniel Dunbar · 13 years ago
- 4236c97 build all C++ files in compiler-rt with -fno-exceptions by Kostya Serebryany · 13 years ago
- ca207f0 [asan] minor cleanup by Kostya Serebryany · 13 years ago
- 8b815e1 [asan] GCD tests on Mac: prevent optimization and enable. Patch by [email protected] by Kostya Serebryany · 13 years ago
- 1ad9248 platform/clang_linux: Add profile and asan libs on x86. by Daniel Dunbar · 13 years ago
- 8b27753 [asan] remove format warnings in sysinfo/sysinfo.cc by Kostya Serebryany · 13 years ago
- ab7940f [asan]: test a pure C file with -faddress-sanitizer; lint fixes by Kostya Serebryany · 13 years ago
- 0e069e2 [asan] add the test for bug 11468 by Kostya Serebryany · 13 years ago
- 49a182f [asan] always collect malloc statstics (removed FLAG_stats) by Kostya Serebryany · 13 years ago
- 92ebcad [asan] cleanup memset/memmove/memcpy interceptors and enable them on Mac. Patch by [email protected] by Kostya Serebryany · 13 years ago
- 93927f9 [asan] don't require __cxa_throw to be present in the process. This is the last dependency on libstdc++ by Kostya Serebryany · 13 years ago
- 551a173 [asan] get rid of some more dependency on libstdc++ by Kostya Serebryany · 14 years ago
- 26c5df4 [asan] micro-benchmark for use-after-return fake stack by Kostya Serebryany · 14 years ago
- b89f2a6 [asan] put back -O2 which was lost quite some time ago and caused noticeable perf drop in malloc-intensive apps. doh. by Kostya Serebryany · 14 years ago
- e4bada2 [asan] get rid of std::map. No STL and almost no libstdc++ left. by Kostya Serebryany · 14 years ago
- c5be44a [asan] quick fix for mac build, second attempt. Sorry for spam. by Kostya Serebryany · 14 years ago
- 196cd6a [asan] quick fix for mac build by Kostya Serebryany · 14 years ago
- 2d27cdf [asan] minimize the use of STL. One bit is still left. by Kostya Serebryany · 14 years ago
- 2003d39 build: Add ModuleName per-subdir variable as a way to organize the different by Daniel Dunbar · 14 years ago
- 4e3a11b lib/asan: Fix possible type mismatches. by Daniel Dunbar · 14 years ago
- 9c665e3 lib/asan: Attempt to ensure __WORDSIZE gets defined, it is not always set by by Daniel Dunbar · 14 years ago
- 70e163b add/update LICENSE.TXT files for the third_party code used by asan by Kostya Serebryany · 14 years ago
- cf7fb02 build/asan: Better fix for ASAN i386 build on Darwin, this causes us to see the by Daniel Dunbar · 14 years ago
- 8a5fd21 build/asan: Fix ASAN build for i386, for reasons I don't really understand we by Daniel Dunbar · 14 years ago
- 5cd49ad platform/clang_darwin: Add asan runtime library configuration. by Daniel Dunbar · 14 years ago
- 12024d0 asan: Fill in integration with compiler-rt/make build. by Daniel Dunbar · 14 years ago
- 5dc7770 asan: Suppress a -Wbitwise-op-parentheses. by Daniel Dunbar · 14 years ago
- 6da8946 build/make: Add rule for .cc files. by Daniel Dunbar · 14 years ago
- fc4a4a3 asan: #if 0 out some unused functions (we build with -Werror). by Daniel Dunbar · 14 years ago
- 5dfa4da [asan] flatten the asan-rt build slightly by Kostya Serebryany · 14 years ago
- f318e29 test asan at -O0 by Kostya Serebryany · 14 years ago
- 15dd3f2 Refactor shadow poisoning done by asan-rt, no funtionality changes; patch by [email protected] by Kostya Serebryany · 14 years ago
- 9d1eee9 fix asan-rt build on Mac. Patch by [email protected] by Kostya Serebryany · 14 years ago
- 019b76f AddressSanitizer run-time library. Not yet integrated with the compiler-rt build system, but can be built using the old makefile. See details in README.txt by Kostya Serebryany · 14 years ago
- e2ed5fb lib/int_util: My refactoring to allow shared utility code had a fatal flaw when by Daniel Dunbar · 14 years ago
- 2aa9008 build: Sketch a Clang/Linux platform config. by Daniel Dunbar · 14 years ago
- f5e4b33 platform/clang_darwin: Fix a refacto and commento. by Daniel Dunbar · 14 years ago
- 6a76c5e platform/clang_darwin: Add configs for profiling support. by Daniel Dunbar · 14 years ago
- fb16114 lib: Import GCDA profiling support from LLVM. by Daniel Dunbar · 14 years ago
- 35923d7 platform/clang_darwin: Switch over to use stub Darwin SDK. by Daniel Dunbar · 14 years ago
- 56f4227 platform/clang_darwin: Tweak deployment arg variable names. by Daniel Dunbar · 14 years ago
- e9da222 build/SDKs: Sketch a minimal stub SDK for Darwin. by Daniel Dunbar · 14 years ago
- 82f9c19 lib/int_math: Some versions of GCC don't provide __builtin_isfinite. Support by Daniel Dunbar · 14 years ago
- 960d55e lib/ppc: Fix a refacto. by Daniel Dunbar · 14 years ago
- 2139c52 lib: Finish int_math.h definitions using compiler builtins and eliminate by Daniel Dunbar · 14 years ago
- ddf1890 lib: Starting thinning out the dependency on math.h by using compiler builtins by Daniel Dunbar · 14 years ago
- b151274 lib: Remove uses of complex.h which does not appear to be required. by Daniel Dunbar · 14 years ago
- 490a270 lib/gcc_personality_v0: Remove an unnecessary include. by Daniel Dunbar · 14 years ago
- 5ed3931 lib: Eliminate direct include of stdlib.h from files that used to (potentially) by Daniel Dunbar · 14 years ago
- 2b88e03 lib: Add support for library wide utility functions, and make compilerrt_abort() by Daniel Dunbar · 14 years ago
- 2f9c140 lib/{ppc,x86_64}: Fixup a number of files to include int_lib.h instead of by Daniel Dunbar · 14 years ago
- 7557f02 lib: Remove math.h from int_lib.h, which doesn't appear to be required. by Daniel Dunbar · 14 years ago
- 2c523a6 build/darwin_bni: Remove consistency check I added, I forgot we always load by Daniel Dunbar · 14 years ago
- 7205b23 lib: Include float.h in int_lib.h, and eliminate duplicate includes from a number of source files. by Daniel Dunbar · 14 years ago
- 6328e7b build/darwin_bni: Add a consistency check. by Daniel Dunbar · 14 years ago
- fd1fb85 lib: Include stdbool.h in int_lib.h, and eliminate duplicate includes from a number of source files. by Daniel Dunbar · 14 years ago
- cc675f4 lib: Rename endianness.h to int_endianness.h (for consistency) and tidy up a bit. by Daniel Dunbar · 14 years ago
- ad4f982 lib: Split out int_types.h, for readability. by Daniel Dunbar · 14 years ago
- 5a29e55 git: Tweak .gitignore to ignore defined platform build directories. by Daniel Dunbar · 14 years ago
- 2f629c8 build/clang_darwin: Set CC before trying to run CheckArches. by Daniel Dunbar · 14 years ago
- b6f75f7 lib: Integrate abi.h into int_lib.h, there aren't good enough reasons for this extra complexity. by Daniel Dunbar · 14 years ago
- 3306157 build/darwin_fat: Drop ppc from default arch list, ppc targets are no longer supported by modern toolchains. by Daniel Dunbar · 14 years ago
- fdb75e4 build: Change default CC to be clang instead of gcc. by Daniel Dunbar · 14 years ago
- 638095f platform/clang_darwin: Improve the "can we build for this arch test" by checking by Daniel Dunbar · 14 years ago
- b69f369 <rdar://problem/10172492> No armv4t slice of libcompiler_rt-static.a by Nick Kledzik · 14 years ago
- 2682897 platform/clang_darwin: Allow use of an RC_SUPPORTED_ARCHS variable to limit the by Daniel Dunbar · 14 years ago
- 7184d9f Change ARM vfp assembly functions to use unified syntax. by Bob Wilson · 14 years ago
- 66cdd22 Refactor DEFINE_COMPILERRT_FUNCTION. by Bob Wilson · 14 years ago
- fd5148b Remove redundant flag: -mthumb is the default for armv7. by Bob Wilson · 14 years ago
- b13cb3b Add the ARM VFP variants to the cc_kext libraries for armv6 and armv7. by Bob Wilson · 14 years ago
- 8b06894 Don't redeclare sr. by Joerg Sonnenberger · 14 years ago
- cf2996d Don't redeclare sr. by Joerg Sonnenberger · 14 years ago
- 1f94705 <rdar://problem/9624306> clean up darwin platform to use xcrun. Set up variables in darwin_bni.mk. Use GetCNAVar in AppleBI.mk by Nick Kledzik · 14 years ago
- 3729225 add STRIP and LIPO as AvailableOptions by Nick Kledzik · 14 years ago
- 00758b0 Missed a rename here 4 args instead of 3. by Eric Christopher · 14 years ago
- 1d18094 Implement mulo<mode>4 for use in signed overflow checking. by Eric Christopher · 14 years ago
- 7487bbb build/clang_darwin: Fix previous change to CheckArches to not cause problem when by Daniel Dunbar · 14 years ago
- 47e71a3 build/clang_darwin: Improve archs check to verify we can not just recognize by Daniel Dunbar · 14 years ago
- d9bcddd If a test case is not compiled on a specific platform, print "skipped" by Joerg Sonnenberger · 14 years ago
- 5c5d361 clang/darwin: Tweak CheckArches function to use CC and to not spew output. by Daniel Dunbar · 14 years ago
- 539ec3a Check architectures to make sure that we can build for all of them by Eric Christopher · 14 years ago
- eac62c53 clang/Darwin: Include divsi3 functions on x86, they are used by the divmod by Daniel Dunbar · 14 years ago
- 5aea172 clang/Darwin: Update ios static lib to build for all archs, in case the by Daniel Dunbar · 14 years ago
- fca8b75 Make sure we include __sync_synchronize on arm platforms if we need it. by Eric Christopher · 14 years ago
- 0ce75e8 clang_darwin: Add divmod functions to cc_kext library. by Daniel Dunbar · 14 years ago
- 74457a7 clang_darwin: Always set deployment targets when building compiler-rt bits, so by Daniel Dunbar · 14 years ago
- 3c51990 Add some macro magic: user __USER_LABEL_PREFIX__ instead of hardcoding it for each platform by Anton Korobeynikov · 14 years ago
- 4322a7d More fixes for missed includes by Anton Korobeynikov · 14 years ago
- 147ecfa Add missed include by Anton Korobeynikov · 14 years ago
- 0529d4d Add missed files from my last commit. by Anton Korobeynikov · 14 years ago
- e63da93 Move abi bits to separate header. Force AAPCS for EABI in accordance with ARM RTABI. by Anton Korobeynikov · 14 years ago
- 75e3c19 Add ARM EABI function aliases to routines by Anton Korobeynikov · 14 years ago
- bdadd87 Make use of LOCAL_LABEL macro by Anton Korobeynikov · 14 years ago
- 1653610 Get rid of darwin'isms. Provide convenient macro for assembler local lables. by Anton Korobeynikov · 14 years ago
- ddd3a2e clang_darwin: Tweak runtime library definitions to include divmod functions. by Daniel Dunbar · 14 years ago
- 19b8260 <rdar://problem/9282305> install an archive for dyld and fix missing -static by Nick Kledzik · 14 years ago