Dylan DPC
770fd738c7
Rollup merge of #111469 - Dushistov:fix-coverage-data-race, r=wesleywiser
...
Fix data race in llvm source code coverage
Fixes #91092 .
Before this patch, increment of counters for code coverage looks like this:
```
movq .L__profc__RNvCsd6wgJFC5r19_3lib6bugaga+8(%rip), %rax
addq $1, %rax
movq %rax, .L__profc__RNvCsd6wgJFC5r19_3lib6bugaga+8(%rip)
```
after this patch:
```
lock incq .L__profc__RNvCs3JgIB2SjHh2_3lib6bugaga+8(%rip)
```
2023-05-13 11:05:34 +05:30
..
2023-05-05 16:30:32 -07:00
2023-05-09 20:49:32 +02:00
2023-05-12 10:24:03 +00:00
2023-05-05 21:44:48 +02:00
2023-05-05 21:44:13 +02:00
2023-05-05 13:06:48 +02:00
2023-05-13 11:05:32 +05:30
2023-05-12 12:04:32 +00:00
2023-05-06 22:32:39 -06:00
2023-05-07 12:38:47 +01:00
2023-05-11 17:43:07 -07:00
2023-05-12 07:11:12 +02:00
2023-05-06 22:32:39 -06:00
2023-05-12 07:11:12 +02:00
2023-05-09 18:20:13 +03:00
2023-05-09 20:49:32 +02:00
2023-05-09 18:20:13 +03:00
2023-05-05 18:40:33 +05:30
2023-05-11 18:06:31 +04:00
2023-05-07 00:12:29 +03:00
2023-05-12 10:24:03 +00:00
2023-05-12 10:25:34 +00:00
2023-05-12 10:26:50 +00:00
2023-05-04 08:09:04 +02:00
2023-05-13 11:05:32 +05:30
2023-05-11 07:05:27 +02:00
2023-05-12 12:04:32 +00:00
2023-05-08 04:50:28 +00:00
2023-05-12 01:40:04 +03:00
2023-05-09 12:33:46 +05:30
2023-05-12 10:24:03 +00:00
2023-05-13 11:05:33 +05:30
2023-05-11 07:05:26 +02:00
2023-05-10 20:54:31 +00:00
2023-05-12 07:11:13 +02:00
2023-05-06 22:32:39 -06:00
2023-05-09 12:33:46 +05:30
2023-05-04 20:49:23 +00:00
2023-05-09 15:16:17 +00:00
2023-05-11 17:43:09 -07:00
2023-05-04 13:52:14 +10:00
2023-05-13 11:05:33 +05:30
2023-05-08 14:23:19 +00:00
2023-05-11 18:06:31 +04:00
2023-05-09 20:04:19 +00:00
2023-05-11 17:43:07 -07:00
2023-05-12 00:10:52 +00:00
2023-05-04 16:59:10 +02:00
2023-05-12 10:26:50 +00:00
2023-05-11 17:43:07 -07:00