Peter Collingbourne
8b9bbd9ed6
MachineLICM: Merge logic for implicit and explicit definitions.
...
Anatoly Trosinenko found that when hasSideEffect was set to 0 in the
definition of LOADgotAUTH, MultiSource/Benchmarks/Ptrdist/ks/ks test
from llvm-test-suite started to crash. The issue was traced down to
MachineLICM pass placing LOADgotAUTH right after an unrelated copy to
x16 like rewriting this code:
````
bb.0:
renamable $x16 = COPY renamable $x12
B %bb.1
bb.1:
...
/* use $x16 */
...
renamable $x20 = LOADgotAUTH target-flags(aarch64-got) @some_variable, implicit-def dead $x16, implicit-def dead $x17, implicit-def dead $nzcv
/* use $x20 */
...
````
like the following:
````
bb.0:
renamable $x16 = COPY renamable $x12
renamable $x20 = LOADgotAUTH target-flags(aarch64-got) @some_variable, implicit-def dead $x16, implicit-def dead $x17, implicit-def dead $nzcv
B %bb.1
bb.1:
...
/* use $x16 */
...
/* use $x20 */
...
```
The issue was caused by inconsistent logic between implicit and explicit
operand definitions, where the implicit side was incorrectly skipping
checking RUDefs for dead operands, leading to RuledOut not being set
for the X16 operand.
Because there isn't really a semantic difference between implicit and
explicit operands at this point, let's remove the isImplicit check and
adjust the logic to do the same thing in both cases:
- For implicit operands, we now check and update RUDefs in the same way
as explicit operands.
- For explicit operands, we now allow dead operands to be skipped.
Reviewers: arsenm, s-barannikov, atrosinenko
Reviewed By: arsenm, s-barannikov
Pull Request: https://github.com/llvm/llvm-project/pull/147624
2025-07-09 13:02:15 -07:00
..
2025-07-08 09:22:30 -07:00
2025-07-08 09:22:30 -07:00
2025-06-15 17:43:58 +01:00
2025-06-27 21:16:23 +09:00
2025-06-11 22:19:31 -07:00
2025-06-11 22:19:31 -07:00
2025-06-11 22:19:31 -07:00
2025-07-03 07:48:08 -04:00
2025-06-12 18:08:07 +01:00
2025-07-02 11:28:37 +01:00
2025-06-26 18:54:27 +01:00
2025-07-08 09:22:30 -07:00
2025-06-05 08:20:44 +01:00
2025-06-11 22:19:31 -07:00
2025-06-11 22:19:31 -07:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-23 16:26:27 +09:00
2025-07-03 07:48:08 -04:00
2025-07-03 07:48:08 -04:00
2025-07-03 07:48:08 -04:00
2025-06-08 11:32:20 +01:00
2025-07-02 18:38:00 +01:00
2025-06-12 15:21:05 +01:00
2025-07-08 09:22:30 -07:00
2025-06-11 13:06:22 -07:00
2025-06-11 13:06:22 -07:00
2025-06-12 15:21:05 +01:00
2025-06-12 18:08:07 +01:00
2025-07-08 09:22:30 -07:00
2025-06-12 18:08:07 +01:00
2025-06-12 15:21:05 +01:00
2025-06-11 22:08:20 +08:00
2025-06-09 14:07:15 +01:00
2025-06-26 11:38:25 +01:00
2025-07-08 09:22:30 -07:00
2025-07-08 09:22:30 -07:00
2025-07-08 09:22:30 -07:00
2025-07-08 09:22:30 -07:00
2025-06-12 18:08:07 +01:00
2025-06-12 15:21:05 +01:00
2025-07-04 22:57:03 +08:00
2025-07-08 09:22:30 -07:00
2025-07-08 09:22:30 -07:00
2025-06-02 15:44:51 +08:00
2025-06-11 22:08:20 +08:00
2025-07-08 09:22:30 -07:00
2025-07-08 09:22:30 -07:00
2025-07-08 09:22:30 -07:00
2025-06-12 15:21:05 +01:00
2025-06-11 22:08:20 +08:00
2025-06-13 11:05:57 +01:00
2025-07-08 09:22:30 -07:00
2025-07-09 11:11:15 -07:00
2025-07-09 11:11:15 -07:00
2025-07-09 11:11:15 -07:00
2025-07-09 11:11:15 -07:00
2025-07-09 11:11:15 -07:00
2025-07-09 11:11:15 -07:00
2025-06-03 08:44:13 +01:00
2025-06-11 15:56:37 +08:00
2025-06-11 08:30:09 +01:00
2025-07-08 09:22:30 -07:00
2025-06-11 22:08:20 +08:00
2025-06-12 09:27:24 +01:00
2025-06-12 10:46:08 +01:00
2025-06-12 18:08:07 +01:00
2025-06-12 18:08:07 +01:00
2025-06-05 08:20:44 +01:00
2025-06-03 08:44:13 +01:00
2025-07-03 07:48:08 -04:00
2025-06-03 08:44:13 +01:00
2025-06-11 09:57:23 -07:00
2025-07-03 07:48:08 -04:00
2025-06-03 08:44:13 +01:00
2025-06-03 08:44:13 +01:00
2025-06-03 08:44:13 +01:00
2025-06-03 08:44:13 +01:00
2025-06-03 08:44:13 +01:00
2025-06-03 08:44:13 +01:00
2025-06-03 08:44:13 +01:00
2025-06-03 08:44:13 +01:00
2025-06-12 18:08:07 +01:00
2025-06-11 22:19:31 -07:00
2025-06-30 08:41:23 +08:00
2025-07-08 09:22:30 -07:00
2025-06-13 11:05:57 +01:00
2025-07-03 07:48:08 -04:00
2025-06-11 22:08:20 +08:00
2025-06-24 13:52:30 +09:00
2025-06-11 22:19:31 -07:00
2025-06-11 22:19:31 -07:00
2025-06-11 22:19:31 -07:00
2025-06-13 11:05:57 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 09:29:41 +01:00
2025-06-16 10:31:24 +01:00
2025-07-03 07:48:08 -04:00
2025-06-13 11:05:57 +01:00
2025-07-08 09:22:30 -07:00
2025-07-08 09:22:30 -07:00
2025-06-04 17:28:05 +01:00
2025-06-04 13:47:44 +01:00
2025-07-01 18:10:30 -04:00
2025-07-02 11:28:37 +01:00
2025-07-02 11:28:37 +01:00
2025-06-11 22:19:31 -07:00
2025-06-11 22:19:31 -07:00
2025-06-16 10:31:24 +01:00
2025-06-12 18:40:34 +01:00
2025-06-16 10:31:24 +01:00
2025-06-11 22:19:31 -07:00
2025-06-23 23:00:03 -07:00
2025-06-11 22:08:20 +08:00
2025-06-11 22:08:20 +08:00
2025-06-11 22:08:20 +08:00
2025-06-11 22:08:20 +08:00
2025-06-11 22:08:20 +08:00
2025-06-11 22:19:31 -07:00
2025-06-11 22:08:20 +08:00
2025-06-30 08:41:23 +08:00
2025-06-16 14:37:34 +01:00
2025-07-07 09:31:49 -07:00
2025-07-08 09:22:30 -07:00
2025-07-08 09:22:30 -07:00
2025-06-04 14:35:30 +02:00
2025-07-07 09:57:02 +08:00
2025-06-12 18:08:07 +01:00
2025-06-11 22:08:20 +08:00
2025-06-11 22:08:20 +08:00
2025-06-18 17:22:53 +01:00
2025-06-11 15:56:37 +08:00
2025-07-08 09:22:30 -07:00
2025-06-10 10:46:29 +09:00
2025-06-03 12:28:31 +02:00
2025-07-03 13:14:59 +01:00
2025-07-02 09:44:54 -07:00
2025-06-11 22:08:20 +08:00
2025-06-12 15:21:05 +01:00
2025-06-12 18:08:07 +01:00
2025-06-12 18:08:07 +01:00
2025-06-11 22:08:20 +08:00
2025-06-12 18:08:07 +01:00
2025-06-10 10:46:29 +09:00
2025-07-07 10:02:47 +01:00
2025-06-30 13:26:57 +01:00
2025-07-01 12:44:45 +01:00
2025-07-02 11:28:37 +01:00
2025-06-11 22:08:20 +08:00
2025-06-12 15:21:05 +01:00
2025-06-04 14:26:34 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 18:08:07 +01:00
2025-06-12 18:08:07 +01:00
2025-06-11 22:08:20 +08:00
2025-06-17 15:30:49 +01:00
2025-06-11 22:19:31 -07:00
2025-07-09 13:02:15 -07:00
2025-06-13 11:05:57 +01:00
2025-06-04 09:33:05 +02:00
2025-06-04 09:33:05 +02:00
2025-06-04 09:33:05 +02:00
2025-06-30 22:52:12 +02:00
2025-06-25 10:13:40 +01:00
2025-06-02 16:43:39 +02:00
2025-06-11 22:08:20 +08:00
2025-06-02 16:43:39 +02:00
2025-06-18 17:52:55 +08:00
2025-06-11 22:19:31 -07:00
2025-07-01 16:07:32 +01:00
2025-06-11 22:19:31 -07:00
2025-06-25 15:37:33 +09:00
2025-06-02 15:51:32 +02:00
2025-06-11 22:19:31 -07:00
2025-07-03 07:48:08 -04:00
2025-06-13 08:52:48 +01:00
2025-06-12 18:08:07 +01:00
2025-06-12 18:08:07 +01:00
2025-07-03 07:48:08 -04:00
2025-06-05 12:50:33 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-07-03 07:48:08 -04:00
2025-06-20 11:46:43 +01:00
2025-06-24 14:56:55 -07:00
2025-06-24 14:56:55 -07:00
2025-06-24 14:56:55 -07:00
2025-06-24 14:56:55 -07:00
2025-06-24 14:56:55 -07:00
2025-06-05 08:20:44 +01:00
2025-06-09 13:46:40 -07:00
2025-06-23 16:33:35 +09:00
2025-06-23 16:33:35 +09:00
2025-06-21 00:38:30 +02:00
2025-06-12 19:38:42 +05:00
2025-07-03 07:48:08 -04:00
2025-06-12 15:21:05 +01:00
2025-07-03 07:48:08 -04:00
2025-06-11 22:19:31 -07:00
2025-07-03 07:48:08 -04:00
2025-06-11 22:08:20 +08:00
2025-06-11 22:08:20 +08:00
2025-07-03 07:48:08 -04:00
2025-06-11 22:08:20 +08:00
2025-07-08 09:22:30 -07:00
2025-06-12 10:46:08 +01:00
2025-06-12 18:08:07 +01:00
2025-07-01 12:39:43 +08:00
2025-07-03 07:48:08 -04:00
2025-07-08 09:22:30 -07:00
2025-06-06 10:21:40 +01:00
2025-07-03 07:48:08 -04:00
2025-06-12 09:29:41 +01:00
2025-07-07 12:03:17 +01:00
2025-06-06 10:21:40 +01:00
2025-06-09 10:44:55 +05:30
2025-06-12 15:21:05 +01:00
2025-06-20 11:13:42 +01:00
2025-06-23 16:29:58 +09:00
2025-06-20 12:55:11 +01:00
2025-06-09 13:46:40 -07:00
2025-06-11 22:08:20 +08:00
2025-07-09 08:08:22 +01:00
2025-06-12 15:21:05 +01:00
2025-06-11 22:08:20 +08:00
2025-06-12 18:08:07 +01:00
2025-06-11 22:19:31 -07:00
2025-06-11 22:19:31 -07:00
2025-06-11 22:19:31 -07:00
2025-06-11 22:19:31 -07:00
2025-06-11 22:19:31 -07:00
2025-06-11 22:08:20 +08:00
2025-07-02 11:28:37 +01:00
2025-06-25 10:48:51 +01:00
2025-06-03 08:44:13 +01:00
2025-06-16 10:31:24 +01:00
2025-06-11 22:08:20 +08:00
2025-07-02 09:44:54 -07:00
2025-06-25 12:31:23 +08:00
2025-06-12 15:21:05 +01:00
2025-06-13 11:05:57 +01:00
2025-07-08 09:22:30 -07:00
2025-07-08 09:22:30 -07:00
2025-06-13 11:05:57 +01:00
2025-06-13 11:05:57 +01:00
2025-06-13 11:05:57 +01:00
2025-07-08 09:22:30 -07:00
2025-07-08 09:22:30 -07:00
2025-06-11 22:08:20 +08:00
2025-06-13 08:52:48 +01:00
2025-06-13 11:05:57 +01:00
2025-06-12 18:08:07 +01:00
2025-07-03 07:48:08 -04:00
2025-06-12 15:21:05 +01:00
2025-06-12 18:08:07 +01:00
2025-06-12 19:38:42 +05:00
2025-06-12 19:38:42 +05:00
2025-07-03 13:11:29 -07:00
2025-07-03 07:48:08 -04:00
2025-06-03 08:44:13 +01:00
2025-06-11 22:19:31 -07:00
2025-06-12 19:38:42 +05:00
2025-06-11 15:56:37 +08:00
2025-06-11 15:56:37 +08:00
2025-07-02 09:44:54 -07:00
2025-07-02 15:07:48 +01:00
2025-06-12 15:21:05 +01:00
2025-06-25 14:55:52 +01:00
2025-06-12 18:08:07 +01:00
2025-06-13 11:05:57 +01:00
2025-07-08 09:22:30 -07:00
2025-06-25 16:05:54 +02:00
2025-06-12 18:08:07 +01:00
2025-06-13 11:05:57 +01:00
2025-07-04 22:57:03 +08:00
2025-06-05 15:32:25 +08:00
2025-06-11 22:08:20 +08:00
2025-06-11 22:08:20 +08:00
2025-06-11 22:08:20 +08:00
2025-06-13 11:05:57 +01:00
2025-06-28 17:01:10 +01:00
2025-07-02 09:44:54 -07:00
2025-06-11 22:08:20 +08:00
2025-06-12 15:21:05 +01:00
2025-06-20 15:51:04 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-20 15:51:04 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 18:08:07 +01:00
2025-06-09 11:52:07 +01:00
2025-06-09 11:52:07 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-03 10:00:10 +01:00
2025-06-12 09:29:41 +01:00
2025-06-26 14:12:18 +01:00
2025-06-04 17:53:43 +01:00
2025-06-26 14:12:18 +01:00
2025-06-13 11:05:57 +01:00
2025-06-13 11:05:57 +01:00
2025-06-04 17:53:43 +01:00
2025-06-09 18:40:15 +01:00
2025-06-12 09:29:41 +01:00
2025-06-12 09:29:41 +01:00
2025-06-21 00:38:30 +02:00
2025-06-12 09:29:41 +01:00
2025-06-04 17:53:43 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 09:29:41 +01:00
2025-06-10 11:29:08 +01:00
2025-06-10 11:29:08 +01:00
2025-06-12 18:08:07 +01:00
2025-06-10 11:29:08 +01:00
2025-06-12 18:08:07 +01:00
2025-06-10 11:29:08 +01:00
2025-06-06 16:41:40 +01:00
2025-06-13 11:05:57 +01:00
2025-06-13 14:52:24 +01:00
2025-06-16 10:31:24 +01:00
2025-06-16 10:31:24 +01:00
2025-06-16 10:31:24 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-12 15:21:05 +01:00
2025-06-20 18:09:07 +01:00
2025-06-20 18:09:07 +01:00
2025-06-12 15:21:05 +01:00
2025-06-13 11:05:57 +01:00
2025-06-13 11:05:57 +01:00
2025-06-12 18:08:07 +01:00
2025-06-13 11:05:57 +01:00
2025-06-12 15:21:05 +01:00
2025-06-20 17:03:30 +01:00
2025-06-12 09:29:41 +01:00
2025-06-11 08:26:36 +01:00
2025-06-13 11:05:57 +01:00
2025-06-12 18:08:07 +01:00
2025-06-13 11:05:57 +01:00
2025-06-13 08:52:48 +01:00
2025-06-13 11:05:57 +01:00
2025-06-12 15:21:05 +01:00
2025-06-13 11:05:57 +01:00
2025-06-16 15:06:41 -07:00
2025-06-16 15:06:41 -07:00
2025-06-11 22:19:31 -07:00
2025-06-25 10:48:51 +01:00
2025-07-02 09:44:54 -07:00
2025-06-09 18:40:15 +01:00
2025-07-08 09:22:30 -07:00
2025-07-08 21:52:53 -07:00
2025-06-12 16:51:09 +01:00
2025-06-16 10:31:24 +01:00
2025-06-16 10:31:24 +01:00