- Feb 19, 2014
-
-
Alexey Samsonov authored
llvm-svn: 201672
-
Evgeniy Stepanov authored
Very bad things happen otherwise. llvm-svn: 201670
-
Alexey Samsonov authored
llvm-svn: 201666
-
Evgeniy Stepanov authored
There are more cases when those manifest as an access below SP. llvm-svn: 201664
-
Alexey Samsonov authored
1) Depend on llvm-config (configured in LLVM_CONFIG_PATH) to get necessary LLVM source/binary directories. 2) Add basic support for running lit tests (check-xsan commands). For now this "support" is far from what we want: * unit tests are not built currently. * lit tests use Clang/compiler-rt from LLVM build directory, not the host compiler or just-built compiler-rt libraries. We should make a choice on the way we intend ti run compiler-rt lit testsuite: a) use either Clang from LLVM build tree, or the host compiler. b) use either just-built runtimes, or the runtimes shipped with the host compiler. Using just-built runtimes is tricky - we have to know where to put them, so that Clang/GCC driver would pick them up (and not overwrite the existing runtimes). Using a host compiler instead of Clang from LLVM build tree will give us a chance to run lit tests under GCC (which already has support for several sanitizers). That is, I tend to make the following choice: if we're in a standalone compiler-rt build, use host compiler with its set of runtime libraries to run lit tests. This will effectively decouple "make compiler-rt" and "make check-compiler-rt" in a standalone build - the latter wouldn't invoke the former. Note that if we decide to fix LLVM/Clang/compiler-rt build system so that it would configure/build compiler-rt with just-built Clang (as we do in Makefile-based build), this will not be a problem - we can add a dependency to ensure that clang/compiler-rt are rebuilt before running compiler-rt tests. llvm-svn: 201656
-
Evgeniy Stepanov authored
Move asm tests to their own file. llvm-svn: 201653
-
Evgeniy Stepanov authored
llvm-svn: 201652
-
Evgeniy Stepanov authored
These are runtime support functions for inline assembly instrumentation. This is a re-submit of r201402. Patch by Yuri Gorshenin. llvm-svn: 201650
-
Alexey Samsonov authored
This change allows to build compiler-rt libraries separately from LLVM/Clang (path to LLVM build directory should be specified at configure time). Running tests is not yet supported. llvm-svn: 201647
-
- Feb 18, 2014
-
-
Timur Iskhodzhanov authored
llvm-svn: 201580
-
Kostya Serebryany authored
llvm-svn: 201576
-
Alexey Samsonov authored
llvm-svn: 201575
-
Kostya Serebryany authored
llvm-svn: 201572
-
Evgeniy Stepanov authored
llvm-svn: 201571
-
Kostya Serebryany authored
[tsan] in deadlock detector do not register locks on their creation and unregister them on destruction; added a relevant test llvm-svn: 201568
-
Evgeniy Stepanov authored
Failing on some bots. llvm-svn: 201567
-
Alexey Samsonov authored
llvm-svn: 201566
-
Evgeniy Stepanov authored
Report segmentation faults near or below stack bottom as stack-overflow (not stack-buffer-overflow!). llvm-svn: 201565
-
Evgeniy Stepanov authored
llvm-svn: 201564
-
Evgeniy Stepanov authored
Android libc always sets altstack on non-main threads, but it is too small for our unwinder. With use_sigaltstack=1, override this setting with a larger one. llvm-svn: 201557
-
Alexey Samsonov authored
[CMake] Add top-level target for each compiler-rt library, and add 'compiler-rt' target encompassing them all. llvm-svn: 201556
-
Kostya Serebryany authored
llvm-svn: 201554
-
Alexey Samsonov authored
llvm-svn: 201553
-
Alexey Samsonov authored
llvm-svn: 201552
-
Alexey Samsonov authored
llvm-svn: 201549
-
Evgeniy Stepanov authored
llvm-svn: 201548
-
Alexey Samsonov authored
llvm-svn: 201547
-
Evgeniy Stepanov authored
This fixes global-demangle.cc test on Android. https://code.google.com/p/address-sanitizer/issues/detail?id=264 llvm-svn: 201545
-
Alexey Samsonov authored
llvm-svn: 201544
-
Alexey Samsonov authored
llvm-svn: 201543
-
- Feb 17, 2014
-
-
Kostya Serebryany authored
llvm-svn: 201514
-
Alexey Samsonov authored
llvm-svn: 201513
-
Evgeniy Stepanov authored
llvm-svn: 201511
-
Evgeniy Stepanov authored
Also remove a reference to mach_override code that is long gone. llvm-svn: 201510
-
Kostya Serebryany authored
llvm-svn: 201509
-
Alexey Samsonov authored
When the locale of a shell is set other than English locales or the C locale, The word 'Target' may be translated. Thus, with e.g. ja_JP locale, compiler-rt couldn't be built properly. Forcing LANG=C fixes the problem. Patch by Ogino Masanori. llvm-svn: 201506
-
Kostya Serebryany authored
llvm-svn: 201505
-
Kostya Serebryany authored
llvm-svn: 201503
-
- Feb 14, 2014
-
-
Alexey Samsonov authored
llvm-svn: 201421
-
Evgeniy Stepanov authored
Android does not provide posix_memalign. llvm-svn: 201420
-