Alexey Samsonov | 298dd7c | 2012-06-05 07:46:31 +0000 | [diff] [blame] | 1 | //===-- sanitizer_win.cc --------------------------------------------------===// |
Alexey Samsonov | dde1f11 | 2012-06-05 07:05:10 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file is shared between AddressSanitizer and ThreadSanitizer |
| 11 | // run-time libraries and implements windows-specific functions from |
| 12 | // sanitizer_libc.h. |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | #ifdef _WIN32 |
| 15 | #include <windows.h> |
| 16 | |
| 17 | #include <assert.h> |
| 18 | |
Alexey Samsonov | 5bbf829 | 2012-06-05 14:25:27 +0000 | [diff] [blame] | 19 | #include "sanitizer_internal_defs.h" |
Alexey Samsonov | dde1f11 | 2012-06-05 07:05:10 +0000 | [diff] [blame] | 20 | #include "sanitizer_libc.h" |
| 21 | |
| 22 | #define UNIMPLEMENTED_WIN() assert(false) |
| 23 | |
| 24 | namespace __sanitizer { |
| 25 | |
| 26 | void *internal_mmap(void *addr, uptr length, int prot, int flags, |
| 27 | int fd, u64 offset) { |
| 28 | UNIMPLEMENTED_WIN(); |
| 29 | return 0; |
| 30 | } |
| 31 | |
Alexey Samsonov | 7ac77d6 | 2012-06-05 09:49:25 +0000 | [diff] [blame] | 32 | int internal_munmap(void *addr, uptr length) { |
| 33 | UNIMPLEMENTED_WIN(); |
| 34 | return 0; |
| 35 | } |
| 36 | |
Alexey Samsonov | 03c8b84 | 2012-06-05 08:32:53 +0000 | [diff] [blame] | 37 | int internal_close(fd_t fd) { |
| 38 | UNIMPLEMENTED_WIN(); |
| 39 | return 0; |
| 40 | } |
| 41 | |
Alexey Samsonov | dde1f11 | 2012-06-05 07:05:10 +0000 | [diff] [blame] | 42 | fd_t internal_open(const char *filename, bool write) { |
| 43 | UNIMPLEMENTED_WIN(); |
| 44 | return 0; |
| 45 | } |
| 46 | |
Alexey Samsonov | 03c8b84 | 2012-06-05 08:32:53 +0000 | [diff] [blame] | 47 | uptr internal_read(fd_t fd, void *buf, uptr count) { |
| 48 | UNIMPLEMENTED_WIN(); |
| 49 | return 0; |
| 50 | } |
| 51 | |
| 52 | uptr internal_write(fd_t fd, const void *buf, uptr count) { |
| 53 | if (fd != 2) { |
| 54 | UNIMPLEMENTED_WIN(); |
| 55 | return 0; |
| 56 | } |
| 57 | HANDLE err = GetStdHandle(STD_ERROR_HANDLE); |
| 58 | if (err == 0) |
| 59 | return 0; // FIXME: this might not work on some apps. |
| 60 | DWORD ret; |
| 61 | if (!WriteFile(err, buf, count, &ret, 0)) |
| 62 | return 0; |
| 63 | return ret; |
| 64 | } |
| 65 | |
Alexey Samsonov | ca2b5d7 | 2012-06-06 07:30:33 +0000 | [diff] [blame^] | 66 | uptr internal_filesize(fd_t fd) { |
| 67 | UNIMPLEMENTED_WIN(); |
| 68 | return -1; |
| 69 | } |
| 70 | |
| 71 | int internal_dup2(int oldfd, int newfd) { |
| 72 | UNIMPLEMENTED_WIN(); |
| 73 | return -1; |
| 74 | } |
| 75 | |
Alexey Samsonov | 7ac77d6 | 2012-06-05 09:49:25 +0000 | [diff] [blame] | 76 | int internal_sscanf(const char *str, const char *format, ...) { |
| 77 | UNIMPLEMENTED_WIN(); |
| 78 | return -1; |
| 79 | } |
| 80 | |
Alexey Samsonov | dde1f11 | 2012-06-05 07:05:10 +0000 | [diff] [blame] | 81 | } // namespace __sanitizer |
| 82 | |
| 83 | #endif // _WIN32 |