bors
36aab8df0a
Auto merge of #115301 - Zalathar:regions-vec, r=davidtwco
...
coverage: Allow each coverage statement to have multiple code regions
The original implementation of coverage instrumentation was built around the assumption that a coverage counter/expression would be associated with *up to one* code region. When it was discovered that *multiple* regions would sometimes need to share a counter, a workaround was found: for the remaining regions, the instrumentor would create a fresh expression that adds zero to the existing counter/expression.
That got the job done, but resulted in some awkward code, and produces unnecessarily complicated coverage maps in the final binary.
---
This PR removes that tension by changing `StatementKind::Coverage`'s code region field from `Option<CodeRegion>` to `Vec<CodeRegion>`.
The changes on the codegen side are fairly straightforward. As long as each `CoverageKind::Counter` only injects one `llvm.instrprof.increment`, the rest of coverage codegen is happy to handle multiple regions mapped to the same counter/expression, with only minor option-to-vec adjustments.
On the instrumentor/mir-transform side, we can get rid of the code that creates extra (x + 0) expressions. Instead we gather all of the code regions associated with a single BCB, and inject them all into one coverage statement.
---
There are several patches here but they can be divided in to three phases:
- Preparatory work
- Actually switching over to multiple regions per coverage statement
- Cleaning up
So viewing the patches individually may be easier.
2023-10-03 18:36:21 +00:00
..
2023-09-28 16:13:38 +00:00
2023-09-14 11:56:55 +02:00
2023-08-19 22:41:33 +02:00
2023-09-20 18:18:44 +00:00
2023-08-23 16:09:57 +00:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-10-02 23:39:45 +03:00
2023-08-17 17:02:04 +00:00
2023-09-16 16:31:09 +02:00
2023-09-22 15:19:38 +00:00
2023-09-05 17:20:07 +00:00
2023-07-07 18:17:16 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-08-24 14:26:26 +02:00
2023-08-24 14:26:26 +02:00
2023-08-24 14:26:26 +02:00
2023-08-30 17:24:10 +08:00
2023-08-30 17:24:10 +08:00
2023-08-30 17:24:10 +08:00
2023-08-30 17:24:10 +08:00
2023-08-24 14:26:26 +02:00
2023-08-24 14:26:26 +02:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-07-10 16:01:18 +00:00
2023-06-15 15:19:11 -04:00
2023-07-07 18:17:16 +02:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-08-24 14:26:26 +02:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-07-25 14:30:58 +02:00
2023-07-25 14:30:58 +02:00
2023-09-24 09:09:05 +00:00
2023-06-15 15:19:11 -04:00
2023-06-21 07:41:09 +00:00
2023-08-30 17:24:10 +08:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-07-07 18:17:16 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-07-07 18:17:16 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-08-24 14:26:26 +02:00
2023-08-24 14:26:26 +02:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-09-19 05:42:23 +00:00
2023-09-19 05:42:23 +00:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-09-14 11:56:55 +02:00
2023-09-14 11:56:55 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-09-14 11:56:55 +02:00
2023-09-14 11:56:55 +02:00
2023-08-30 17:24:10 +08:00
2023-06-15 15:19:11 -04:00
2023-06-28 00:41:37 +00:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-09-10 13:55:33 +02:00
2023-09-21 22:20:58 +02:00
2023-09-21 22:20:58 +02:00
2023-06-12 09:34:15 +02:00
2023-09-21 22:20:58 +02:00
2023-09-21 22:20:58 +02:00
2023-06-12 09:34:15 +02:00
2023-09-21 22:20:58 +02:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:05 +00:00
2023-09-24 09:09:05 +00:00
2023-09-24 09:09:05 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-09-24 09:09:04 +00:00
2023-06-15 15:19:11 -04:00
2023-08-30 17:24:10 +08:00
2023-06-15 15:19:11 -04:00
2023-08-30 17:24:10 +08:00
2023-08-30 17:24:10 +08:00
2023-08-30 17:24:10 +08:00
2023-08-30 17:24:10 +08:00
2023-08-30 17:24:10 +08:00
2023-09-19 05:42:23 +00:00
2023-09-19 05:42:23 +00:00
2023-10-03 13:03:39 +11:00
2023-10-03 13:03:39 +11:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-08-24 14:26:26 +02:00
2023-08-24 14:26:26 +02:00
2023-06-12 09:34:15 +02:00
2023-08-24 14:26:26 +02:00
2023-08-24 14:26:26 +02:00
2023-06-15 15:19:11 -04:00
2023-08-24 14:26:26 +02:00
2023-08-24 14:26:26 +02:00
2023-06-12 09:34:15 +02:00
2023-06-12 09:34:15 +02:00
2023-08-24 14:26:26 +02:00
2023-08-24 14:26:26 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-12 09:34:15 +02:00
2023-09-24 09:09:05 +00:00
2023-09-24 09:09:05 +00:00
2023-06-15 15:19:11 -04:00
2023-08-24 14:26:26 +02:00
2023-08-24 14:26:26 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-09-16 16:31:09 +02:00
2023-09-16 16:31:09 +02:00
2023-09-11 12:51:07 +10:00
2023-07-19 09:59:12 +00:00
2023-07-19 09:59:12 +00:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-08-30 17:24:10 +08:00
2023-08-30 17:24:10 +08:00
2023-08-30 17:24:10 +08:00
2023-08-30 17:24:10 +08:00
2023-07-07 18:17:16 +02:00
2023-07-07 18:17:16 +02:00
2023-07-07 18:17:16 +02:00
2023-07-07 18:17:16 +02:00
2023-07-07 18:17:16 +02:00
2023-07-07 18:17:16 +02:00
2023-07-07 18:17:16 +02:00
2023-07-07 18:17:16 +02:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-09-04 18:27:34 +02:00
2023-09-04 18:27:34 +02:00
2023-06-19 01:47:03 -07:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-19 01:47:03 -07:00
2023-06-19 01:47:03 -07:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-08-30 17:24:10 +08:00
2023-08-30 17:24:10 +08:00
2023-06-12 09:34:15 +02:00
2023-08-24 14:26:26 +02:00
2023-08-24 14:26:26 +02:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-08-30 17:24:10 +08:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-08-24 14:26:26 +02:00
2023-08-24 14:26:26 +02:00
2023-06-12 09:34:15 +02:00
2023-08-30 17:24:10 +08:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-08-24 14:26:26 +02:00
2023-06-12 09:34:15 +02:00
2023-08-17 17:02:04 +00:00
2023-06-23 18:36:25 +01:00
2023-06-23 18:36:25 +01:00
2023-06-23 18:36:25 +01:00
2023-08-17 17:02:04 +00:00
2023-06-15 15:19:11 -04:00
2023-08-17 17:02:04 +00:00
2023-08-17 17:02:04 +00:00
2023-08-17 17:02:04 +00:00
2023-08-17 17:02:04 +00:00
2023-08-19 22:41:33 +02:00
2023-06-23 18:36:25 +01:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-08-30 17:24:10 +08:00
2023-08-30 17:24:10 +08:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-09-21 22:20:58 +02:00
2023-09-21 22:20:58 +02:00
2023-10-02 23:39:45 +03:00
2023-10-02 23:39:45 +03:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-21 07:41:09 +00:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-09-24 09:09:05 +00:00
2023-09-24 09:09:05 +00:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-07-07 18:17:16 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-08-24 14:26:26 +02:00
2023-06-17 18:31:35 +10:00
2023-06-17 18:31:35 +10:00
2023-06-17 18:31:35 +10:00
2023-09-28 17:05:52 +00:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-08-24 14:26:26 +02:00
2023-06-15 15:19:11 -04:00
2023-06-15 15:19:11 -04:00
2023-06-12 09:34:15 +02:00
2023-06-15 15:19:11 -04:00
2023-06-23 18:36:25 +01:00