Re: [PATCH V2 2/3] Using pli to split 34bits constant

2023-11-26 Thread Jiufu Guo
Hi, "Kewen.Lin" writes: > Hi, > > on 2023/11/15 11:02, Jiufu Guo wrote: >> Hi, >> >> For constants with 16bit values, 'li or lis' can be used to generate >> the value. For 34bit constant, 'pli' is ok to generate the value. >> For example: 0xULL, "pli 3,1717986918; rldimi 3,3,

Re: [PATCH V2 2/3] Using pli to split 34bits constant

2023-11-22 Thread Kewen.Lin
Hi, on 2023/11/15 11:02, Jiufu Guo wrote: > Hi, > > For constants with 16bit values, 'li or lis' can be used to generate > the value. For 34bit constant, 'pli' is ok to generate the value. > For example: 0xULL, "pli 3,1717986918; rldimi 3,3,32,0" > can be used. Since now if emit

[PATCH V2 2/3] Using pli to split 34bits constant

2023-11-14 Thread Jiufu Guo
Hi, For constants with 16bit values, 'li or lis' can be used to generate the value. For 34bit constant, 'pli' is ok to generate the value. For example: 0xULL, "pli 3,1717986918; rldimi 3,3,32,0" can be used. Compare with previous: https://gcc.gnu.org/pipermail/gcc-patches/2023-Oc