search for: msan_interface

Displaying 13 results from an estimated 13 matches for "msan_interface".

Did you mean: asan_interface
2014 Mar 27
2
[LLVMdev] Building sanitizers for Android
...e/sanitizer/asan_interface.h -- Installing: ship/include/sanitizer/common_interface_defs.h -- Installing: ship/include/sanitizer/dfsan_interface.h -- Installing: ship/include/sanitizer/linux_syscall_hooks.h -- Installing: ship/include/sanitizer/lsan_interface.h -- Installing: ship/include/sanitizer/msan_interface.h -- Installing: ship/include/sanitizer/tsan_interface_atomic.h -- Installing: ship/asan_blacklist.txt -- Installing: ship/bin/asan_device_setup Thanks, Greg
2014 Mar 27
2
[LLVMdev] Building sanitizers for Android
...alling: ship/include/sanitizer/common_interface_defs.h >> -- Installing: ship/include/sanitizer/dfsan_interface.h >> -- Installing: ship/include/sanitizer/linux_syscall_hooks.h >> -- Installing: ship/include/sanitizer/lsan_interface.h >> -- Installing: ship/include/sanitizer/msan_interface.h >> -- Installing: ship/include/sanitizer/tsan_interface_atomic.h >> -- Installing: ship/asan_blacklist.txt >> -- Installing: ship/bin/asan_device_setup >> >> Thanks, >> Greg
2014 Mar 28
2
[LLVMdev] Building sanitizers for Android
...ommon_interface_defs.h >>>> -- Installing: ship/include/sanitizer/dfsan_interface.h >>>> -- Installing: ship/include/sanitizer/linux_syscall_hooks.h >>>> -- Installing: ship/include/sanitizer/lsan_interface.h >>>> -- Installing: ship/include/sanitizer/msan_interface.h >>>> -- Installing: ship/include/sanitizer/tsan_interface_atomic.h >>>> -- Installing: ship/asan_blacklist.txt >>>> -- Installing: ship/bin/asan_device_setup >>>> >>>> Thanks, >>>> Greg
2014 Apr 01
2
[LLVMdev] Building sanitizers for Android
...>>> -- Installing: ship/include/sanitizer/dfsan_interface.h >> >>>> -- Installing: ship/include/sanitizer/linux_syscall_hooks.h >> >>>> -- Installing: ship/include/sanitizer/lsan_interface.h >> >>>> -- Installing: ship/include/sanitizer/msan_interface.h >> >>>> -- Installing: ship/include/sanitizer/tsan_interface_atomic.h >> >>>> -- Installing: ship/asan_blacklist.txt >> >>>> -- Installing: ship/bin/asan_device_setup >> >>>> >> >>>> Thanks, >> >&gt...
2013 Nov 11
2
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...g for malloc.h > -- Looking for malloc.h - not found > -- Looking for malloc/malloc.h > -- Looking for malloc/malloc.h - found > -- Looking for ndir.h > -- Looking for ndir.h - not found > -- Looking for pthread.h > -- Looking for pthread.h - found > -- Looking for sanitizer/msan_interface.h > -- Looking for sanitizer/msan_interface.h - not found > -- Looking for signal.h > -- Looking for signal.h - found > -- Looking for stdint.h > -- Looking for stdint.h - found > -- Looking for sys/dir.h > -- Looking for sys/dir.h - found > -- Looking for sys/ioctl.h > -...
2013 Nov 11
0
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...- Looking for limits.h - found -- Looking for malloc.h -- Looking for malloc.h - not found -- Looking for malloc/malloc.h -- Looking for malloc/malloc.h - found -- Looking for ndir.h -- Looking for ndir.h - not found -- Looking for pthread.h -- Looking for pthread.h - found -- Looking for sanitizer/msan_interface.h -- Looking for sanitizer/msan_interface.h - not found -- Looking for signal.h -- Looking for signal.h - found -- Looking for stdint.h -- Looking for stdint.h - found -- Looking for sys/dir.h -- Looking for sys/dir.h - found -- Looking for sys/ioctl.h -- Looking for sys/ioctl.h - found -- Looking...
2013 Nov 11
0
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
...malloc.h - not found > > -- Looking for malloc/malloc.h > > -- Looking for malloc/malloc.h - found > > -- Looking for ndir.h > > -- Looking for ndir.h - not found > > -- Looking for pthread.h > > -- Looking for pthread.h - found > > -- Looking for sanitizer/msan_interface.h > > -- Looking for sanitizer/msan_interface.h - not found > > -- Looking for signal.h > > -- Looking for signal.h - found > > -- Looking for stdint.h > > -- Looking for stdint.h - found > > -- Looking for sys/dir.h > > -- Looking for sys/dir.h - found &gt...
2014 Apr 02
3
[LLVMdev] Building sanitizers for Android
...ship/include/sanitizer/dfsan_interface.h > >>> >>>> -- Installing: ship/include/sanitizer/linux_syscall_hooks.h > >>> >>>> -- Installing: ship/include/sanitizer/lsan_interface.h > >>> >>>> -- Installing: ship/include/sanitizer/msan_interface.h > >>> >>>> -- Installing: ship/include/sanitizer/tsan_interface_atomic.h > >>> >>>> -- Installing: ship/asan_blacklist.txt > >>> >>>> -- Installing: ship/bin/asan_device_setup > >>> >>>> > >>&...
2013 Nov 11
2
[LLVMdev] [cfe-dev] [Reminder] LLVM 3.4 Release Branching
This file is for configure+make build, not CMake, so I'm not sure why it's being included into your build (these failures aren't reproducible for me). Can you please list the exact steps you're doing to build LLVM with CMake and make sure you don't have additional CFLAGS (LDFLAGS etc) defined? On Mon, Nov 11, 2013 at 6:16 PM, Jack Howarth <howarth at bromo.med.uc.edu>
2014 Apr 03
2
[LLVMdev] Building sanitizers for Android
...an_interface.h > >> >>> >>>> -- Installing: ship/include/sanitizer/linux_syscall_hooks.h > >> >>> >>>> -- Installing: ship/include/sanitizer/lsan_interface.h > >> >>> >>>> -- Installing: ship/include/sanitizer/msan_interface.h > >> >>> >>>> -- Installing: ship/include/sanitizer/tsan_interface_atomic.h > >> >>> >>>> -- Installing: ship/asan_blacklist.txt > >> >>> >>>> -- Installing: ship/bin/asan_device_setup > >> >>...
2014 Nov 03
8
[LLVMdev] [PATCH] Protection against stack-based memory corruption errors using SafeStack
...set(OS_NAME "Android") diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt index 7f8664e..7c34aee 100644 --- a/include/CMakeLists.txt +++ b/include/CMakeLists.txt @@ -6,7 +6,8 @@ set(SANITIZER_HEADERS sanitizer/linux_syscall_hooks.h sanitizer/lsan_interface.h sanitizer/msan_interface.h - sanitizer/tsan_interface_atomic.h) + sanitizer/tsan_interface_atomic.h + safestack_interface.h) set(output_dir ${COMPILER_RT_OUTPUT_DIR}/include) diff --git a/include/safestack_interface.h b/include/safestack_interface.h new file mode 100644 index 0000000..940d903 --- /dev/null +++ b/in...
2017 Feb 11
2
Asan self host problems: Failed to deallocate
Trying to run a self host "ninja check-clang" with ASan enabled I hit a /lot/ of errors like this (strangely I hit none of these in check-llvm, only in check-clang): Any ideas? ==10525==ERROR: AddressSanitizer failed to deallocate 0x10800 (67584) bytes at address 0x631000014800 ==10525==AddressSanitizer CHECK failed:
2017 Feb 15
2
Asan self host problems: Failed to deallocate
...ND48_DRAND48:INTERNAL=1 //Have symbol lrand48 HAVE_RAND48_LRAND48:INTERNAL=1 //Have symbol srand48 HAVE_RAND48_SRAND48:INTERNAL=1 //Have symbol readdir HAVE_READDIR:INTERNAL=1 //Have symbol realpath HAVE_REALPATH:INTERNAL=1 //Have include rpc/xdr.h HAVE_RPC_XDR_H:INTERNAL=1 //Have include sanitizer/msan_interface.h HAVE_SANITIZER_MSAN_INTERFACE_H:INTERNAL=1 //Have symbol sbrk HAVE_SBRK:INTERNAL=1 //Have symbol setenv HAVE_SETENV:INTERNAL=1 //Have symbol setrlimit HAVE_SETRLIMIT:INTERNAL=1 //Have symbol sigaltstack HAVE_SIGALTSTACK:INTERNAL=1 //Have include signal.h HAVE_SIGNAL_H:INTERNAL=1 //Have include st...