Roman Lebedev
cc39c3b17f
[Codegen][LegalizeIntegerTypes] New legalization strategy for scalar shifts: shift through stack
...
https://reviews.llvm.org/D140493 is going to teach SROA how to promote allocas
that have variably-indexed loads. That does bring up questions of cost model,
since that requires creating wide shifts.
Indeed, our legalization for them is not optimal.
We either split it into parts, or lower it into a libcall.
But if the shift amount is by a multiple of CHAR_BIT,
we can also legalize it throught stack.
The basic idea is very simple:
1. Get a stack slot 2x the width of the shift type
2. store the value we are shifting into one half of the slot
3. pad the other half of the slot. for logical shifts, with zero, for arithmetic shift with signbit
4. index into the slot (starting from the base half into which we spilled, either upwards or downwards)
5. load
6. split loaded integer
This works for both little-endian and big-endian machines:
https://alive2.llvm.org/ce/z/YNVwd5
And better yet, if the original shift amount was not a multiple of CHAR_BIT,
we can just shift by that remainder afterwards: https://alive2.llvm.org/ce/z/pz5G-K
I think, if we are going perform shift->shift-by-parts expansion more than once,
we should instead go through stack, which is what this patch does.
Reviewed By: craig.topper
Differential Revision: https://reviews.llvm.org/D140638
2023-01-14 19:12:18 +03:00
..
2023-01-13 10:34:27 +01:00
2023-01-05 13:21:20 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2023-01-12 12:40:04 +01:00
2023-01-05 13:21:20 +01:00
2023-01-14 19:12:18 +03:00
2022-12-19 12:56:12 +01:00
2023-01-05 13:21:20 +01:00
2022-05-30 19:19:23 +01:00
2022-05-30 19:19:23 +01:00
2023-01-05 13:21:20 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-09-27 11:30:45 -04:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-09-21 12:50:12 +00:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-07-19 10:59:07 +01:00
2022-12-19 12:56:12 +01:00
2021-09-27 11:30:45 -04:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-05-24 19:43:40 +02:00
2021-05-24 19:43:40 +02:00
2022-12-19 12:56:12 +01:00
2022-11-15 14:36:01 -08:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-09-27 11:30:45 -04:00
2022-04-06 09:18:08 +01:00
2022-12-19 12:56:12 +01:00
2022-05-30 19:19:23 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-05-11 23:40:38 +01:00
2023-01-05 13:21:20 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-10-29 15:40:26 -07:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-05-24 19:43:40 +02:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-05-30 19:19:23 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-05-30 19:19:23 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-11-02 11:38:25 +00:00
2022-05-06 09:26:30 -07:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-09-27 11:30:45 -04:00
2021-09-27 11:30:45 -04:00
2021-09-27 11:30:45 -04:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-11-23 09:04:42 +00:00
2023-01-13 10:34:27 +01:00
2021-03-01 10:08:10 -08:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-05-12 22:33:18 +01:00
2022-12-19 12:56:12 +01:00
2021-03-01 10:08:10 -08:00
2022-12-19 12:56:12 +01:00
2022-05-30 19:19:23 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-05-24 19:43:40 +02:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2023-01-05 13:21:20 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-06-30 16:54:13 -04:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-05-24 19:43:40 +02:00
2021-09-27 11:30:45 -04:00
2021-09-27 11:30:45 -04:00
2021-09-27 11:30:45 -04:00
2021-09-27 11:30:45 -04:00
2021-09-27 11:30:45 -04:00
2022-12-19 12:56:12 +01:00
2021-09-27 11:30:45 -04:00
2021-09-27 11:30:45 -04:00
2022-12-19 12:56:12 +01:00
2021-05-24 19:43:40 +02:00
2021-05-24 19:43:40 +02:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-03-03 13:53:36 -08:00
2022-03-03 13:53:36 -08:00
2022-03-03 13:53:36 -08:00
2022-12-19 12:56:12 +01:00
2021-09-27 11:30:45 -04:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-05-24 19:43:40 +02:00
2021-06-17 09:38:28 +02:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-06-17 09:38:28 +02:00
2022-12-19 12:56:12 +01:00
2022-05-12 23:25:09 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-06-07 10:00:25 -04:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-06-02 00:49:11 +00:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-06-08 10:59:46 -07:00
2022-12-19 12:56:12 +01:00
2021-09-27 11:30:45 -04:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-05-24 19:43:40 +02:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2023-01-05 13:21:20 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-05-14 09:50:01 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2021-12-31 15:59:44 +03:00
2022-01-20 20:10:04 +03:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-12-19 12:56:12 +01:00
2022-01-21 17:00:03 -08:00
2022-01-21 17:00:03 -08:00
2022-12-19 12:56:12 +01:00