Hi lain, Thanks for your thoughtful comments and concerns. The primary goal of compressing the structure fields is to achieve memory efficiency. I understand your points regarding potential issues with modifying the size and types of the structure. I guess rewriting all the corresponding statements may help with it. If there are some more complex situations, we will give up this optimization.
But I'm more concerned about how to accomplish this. Thanks Hanke Zhang Iain Sandoe <idsan...@googlemail.com> 于2024年1月13日周六 17:15写道: > > > > > On 13 Jan 2024, at 07:45, Hanke Zhang via Gcc <gcc@gcc.gnu.org> wrote: > > > > Hi, I'm attempting to compress the size of a field in a structure for > > memory-friendly purposes. I created an IPA pass to achieve this, but I > > ran into some issues as follows: > > > > // original > > struct Foo { > > long a1; > > int a2; > > }; > > > > // modified > > struct Foo_update { > > int a1; > > int a2; > > }; > > > > For the example structure Foo, I use `TREE_TYPE (field) = > > integer_type_node` to compress the type of a1 from `long` to `int`. > > Hmm. I am curious about under what conditions this is expected to work. > > Altering the size of the structure (or the types it contains) would break > guarantees > expected by at least c-family languages - like sizeof, alignof > what about arrays of the type, or embedding the type in larger aggregates? > > Iain > > > But I don't know how to update its corresponding SSA variables, > > because the number of them is huge. Is there any way to do it quickly? > > > > Thanks > > Hanke Zhang >