File tree
10 files changed
+68
-21
lines changed- src
- doc/trpl
- librustc/metadata
- librustc_trans/trans
- test/run-make/issue-14500
10 files changed
+68
-21
lines changedSubmodule compiler-rt updated 95 files
- cmake/config-ix.cmake+8
- include/sanitizer/common_interface_defs.h+6
- lib/asan/asan_fake_stack.h+1-1
- lib/asan/asan_mac.cc+4-4
- lib/asan/asan_malloc_mac.cc+39-336
- lib/asan/asan_poisoning.cc+16-9
- lib/asan/asan_win.cc+1
- lib/asan/asan_win_dynamic_runtime_thunk.cc+1
- lib/asan/scripts/asan_device_setup+2
- lib/asan/scripts/asan_symbolize.py+1-1
- lib/builtins/CMakeLists.txt+4-2
- lib/builtins/fp_fixuint_impl.inc+1-1
- lib/builtins/gcc_personality_v0.c+47-18
- lib/builtins/i386/chkstk.S+2-2
- lib/builtins/i386/chkstk2.S+40
- lib/builtins/x86_64/chkstk.S+2-2
- lib/builtins/x86_64/chkstk2.S+42
- lib/interception/interception_win.cc+1
- lib/msan/msan.cc-2
- lib/msan/msan.h+50-36
- lib/msan/msan_allocator.h+1-1
- lib/msan/msan_linux.cc+6
- lib/sanitizer_common/sanitizer_bitvector.h+2-2
- lib/sanitizer_common/sanitizer_common.cc+3-3
- lib/sanitizer_common/sanitizer_common.h+1-1
- lib/sanitizer_common/sanitizer_common_interceptors.inc+20-5
- lib/sanitizer_common/sanitizer_interface_internal.h+4-1
- lib/sanitizer_common/sanitizer_libignore.cc+1-1
- lib/sanitizer_common/sanitizer_linux_libcdep.cc+1-42
- lib/sanitizer_common/sanitizer_mac.cc+2
- lib/sanitizer_common/sanitizer_malloc_mac.inc+350
- lib/sanitizer_common/sanitizer_platform_interceptors.h+2-2
- lib/sanitizer_common/sanitizer_platform_limits_posix.cc+20-5
- lib/sanitizer_common/sanitizer_platform_limits_posix.h+4-1
- lib/sanitizer_common/sanitizer_posix.cc+7-11
- lib/sanitizer_common/sanitizer_posix.h+2
- lib/sanitizer_common/sanitizer_posix_libcdep.cc+43
- lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc+4-2
- lib/sanitizer_common/sanitizer_symbolizer_win.cc+1
- lib/sanitizer_common/sanitizer_win.cc+1-1
- lib/tsan/CMakeLists.txt+65-47
- lib/tsan/rtl/tsan_clock.cc-2
- lib/tsan/rtl/tsan_clock.h+2-1
- lib/tsan/rtl/tsan_defs.h+2
- lib/tsan/rtl/tsan_interceptors.cc+126-54
- lib/tsan/rtl/tsan_malloc_mac.cc+59
- lib/tsan/rtl/tsan_mman.h+1
- lib/tsan/rtl/tsan_mutex.cc+3-2
- lib/tsan/rtl/tsan_new_delete.cc+8
- lib/tsan/rtl/tsan_platform.h+4
- lib/tsan/rtl/tsan_platform_linux.cc+5-88
- lib/tsan/rtl/tsan_platform_mac.cc+108-17
- lib/tsan/rtl/tsan_platform_posix.cc+124
- lib/tsan/rtl/tsan_report.cc+3-2
- lib/tsan/rtl/tsan_rtl.cc+2-1
- lib/tsan/rtl/tsan_rtl.h+8-2
- lib/tsan/rtl/tsan_rtl_thread.cc+8-3
- lib/ubsan/ubsan_diag.h+1-1
- test/asan/TestCases/Darwin/interface_symbols_darwin.c-8
- test/asan/TestCases/Linux/ptrace.cc+81-12
- test/asan/TestCases/Linux/stress_dtls.c+1
- test/asan/TestCases/Posix/coverage-caller-callee.cc+1
- test/asan/TestCases/contiguous_container.cc+10-2
- test/asan/TestCases/coverage-levels.cc+1-1
- test/asan/TestCases/coverage-order-pcs.cc+1
- test/asan/TestCases/coverage-reset.cc+3
- test/asan/TestCases/coverage-tracing.cc+1
- test/asan/TestCases/throw_call_test.cc+5-2
- test/asan/android_commands/android_run.py+2-2
- test/asan/lit.cfg+1-1
- test/builtins/Unit/fixtfdi_test.c+71
- test/builtins/Unit/fixtfsi_test.c+1-1
- test/builtins/Unit/fixtfti_test.c+83
- test/builtins/Unit/fixunsdfdi_test.c+3
- test/builtins/Unit/fixunsdfsi_test.c+2
- test/builtins/Unit/fixunsdfti_test.c+3
- test/builtins/Unit/fixunssfdi_test.c+2
- test/builtins/Unit/fixunssfsi_test.c+2
- test/builtins/Unit/fixunstfdi_test.c+5-3
- test/builtins/Unit/fixunstfsi_test.c+3
- test/builtins/Unit/fixunstfti_test.c+103
- test/builtins/Unit/multf3_test.c+1-1
- test/msan/Linux/process_vm_readv.cc+8-7
- test/msan/chained_origin_limits.cc-4
- test/msan/mmap.cc+21-11
- test/msan/strlen_of_shadow.cc+1-15
- test/sanitizer_common/TestCases/Linux/ptrace.cc+15-4
- test/tsan/CMakeLists.txt+1-1
- test/tsan/atomic_free3.cc+1-1
- test/tsan/lit.cfg+9-3
- test/tsan/real_deadlock_detector_stress_test.cc+1-1
- test/tsan/signal_errno.cc+1-1
- test/tsan/test.h+17-20
- test/tsan/thread_name2.cc+1-1
- test/ubsan/TestCases/Misc/coverage-levels.cc+1-1
Lines changed: 8 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
121 | 121 |
| |
122 | 122 |
| |
123 | 123 |
| |
| 124 | + | |
124 | 125 |
| |
125 | 126 |
| |
126 | 127 |
| |
| |||
131 | 132 |
| |
132 | 133 |
| |
133 | 134 |
| |
134 |
| - | |
| 135 | + | |
135 | 136 |
| |
136 | 137 |
| |
137 | 138 |
| |
| |||
165 | 166 |
| |
166 | 167 |
| |
167 | 168 |
| |
| 169 | + | |
168 | 170 |
| |
169 | 171 |
| |
170 | 172 |
| |
| |||
176 | 178 |
| |
177 | 179 |
| |
178 | 180 |
| |
179 |
| - | |
| 181 | + | |
180 | 182 |
| |
181 | 183 |
| |
182 | 184 |
| |
| |||
207 | 209 |
| |
208 | 210 |
| |
209 | 211 |
| |
| 212 | + | |
210 | 213 |
| |
211 | 214 |
| |
212 | 215 |
| |
| |||
219 | 222 |
| |
220 | 223 |
| |
221 | 224 |
| |
222 |
| - | |
| 225 | + | |
223 | 226 |
| |
224 | 227 |
| |
225 | 228 |
| |
| |||
241 | 244 |
| |
242 | 245 |
| |
243 | 246 |
| |
| 247 | + | |
244 | 248 |
| |
245 | 249 |
| |
246 | 250 |
| |
| |||
250 | 254 |
| |
251 | 255 |
| |
252 | 256 |
| |
253 |
| - | |
| 257 | + | |
254 | 258 |
| |
255 | 259 |
| |
256 | 260 |
| |
|
Lines changed: 13 additions & 10 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
264 | 264 |
| |
265 | 265 |
| |
266 | 266 |
| |
| 267 | + | |
267 | 268 |
| |
268 | 269 |
| |
269 | 270 |
| |
| |||
279 | 280 |
| |
280 | 281 |
| |
281 | 282 |
| |
282 |
| - | |
| 283 | + | |
283 | 284 |
| |
284 | 285 |
| |
285 | 286 |
| |
| |||
313 | 314 |
| |
314 | 315 |
| |
315 | 316 |
| |
316 |
| - | |
| 317 | + | |
317 | 318 |
| |
318 | 319 |
| |
319 | 320 |
| |
320 | 321 |
| |
321 | 322 |
| |
322 |
| - | |
| 323 | + | |
323 | 324 |
| |
324 | 325 |
| |
325 | 326 |
| |
| |||
345 | 346 |
| |
346 | 347 |
| |
347 | 348 |
| |
| 349 | + | |
348 | 350 |
| |
349 | 351 |
| |
350 | 352 |
| |
| |||
360 | 362 |
| |
361 | 363 |
| |
362 | 364 |
| |
363 |
| - | |
| 365 | + | |
364 | 366 |
| |
365 | 367 |
| |
366 | 368 |
| |
| |||
493 | 495 |
| |
494 | 496 |
| |
495 | 497 |
| |
| 498 | + | |
496 | 499 |
| |
497 | 500 |
| |
498 | 501 |
| |
| |||
512 | 515 |
| |
513 | 516 |
| |
514 | 517 |
| |
515 |
| - | |
| 518 | + | |
516 | 519 |
| |
517 | 520 |
| |
518 | 521 |
| |
519 | 522 |
| |
520 |
| - | |
| 523 | + | |
521 | 524 |
| |
522 | 525 |
| |
523 | 526 |
| |
| |||
598 | 601 |
| |
599 | 602 |
| |
600 | 603 |
| |
601 |
| - | |
| 604 | + | |
602 | 605 |
| |
603 | 606 |
| |
604 | 607 |
| |
605 | 608 |
| |
606 |
| - | |
| 609 | + | |
607 | 610 |
| |
608 | 611 |
| |
609 | 612 |
| |
| |||
614 | 617 |
| |
615 | 618 |
| |
616 | 619 |
| |
617 |
| - | |
618 |
| - | |
| 620 | + | |
| 621 | + | |
619 | 622 |
| |
620 | 623 |
| |
621 | 624 |
| |
|
Lines changed: 23 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
24 | 24 |
| |
25 | 25 |
| |
26 | 26 |
| |
27 |
| - | |
28 |
| - | |
29 |
| - | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
30 | 50 |
| |
31 | 51 |
| |
32 | 52 |
| |
|
Lines changed: 3 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
74 | 74 |
| |
75 | 75 |
| |
76 | 76 |
| |
77 |
| - | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
78 | 80 |
| |
79 | 81 |
| |
80 | 82 |
| |
|
Lines changed: 5 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
344 | 344 |
| |
345 | 345 |
| |
346 | 346 |
| |
| 347 | + | |
| 348 | + | |
| 349 | + | |
| 350 | + | |
| 351 | + | |
347 | 352 |
| |
348 | 353 |
| |
349 | 354 |
| |
|
Lines changed: 8 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1425 | 1425 |
| |
1426 | 1426 |
| |
1427 | 1427 |
| |
| 1428 | + | |
| 1429 | + | |
| 1430 | + | |
| 1431 | + | |
| 1432 | + | |
| 1433 | + | |
| 1434 | + | |
| 1435 | + | |
1428 | 1436 |
| |
1429 | 1437 |
| |
1430 | 1438 |
| |
|
Lines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2875 | 2875 |
| |
2876 | 2876 |
| |
2877 | 2877 |
| |
2878 |
| - | |
| 2878 | + | |
| 2879 | + | |
2879 | 2880 |
| |
2880 | 2881 |
| |
2881 | 2882 |
| |
|
Lines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
| 12 | + | |
12 | 13 |
| |
13 | 14 |
| |
14 | 15 |
| |
15 |
| - | |
| 16 | + | |
16 | 17 |
|
Lines changed: 3 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
| 13 | + | |
| 14 | + | |
| 15 | + |
0 commit comments