Thanks for your patient answer, I got it 发件人:"Tsukasa OI" 发送日期:2022-09-21 18:14:24 收件人:shihua@iscas.ac.cn 抄送人: 主 题:Re: [PATCH 0/1] RISC-V: Minor fix to the 'Ztso' extension support On 2022/09/21 18:53, shihua@iscas.ac.cn wrote: > Hi,Tsukasa OI > In patch V4 ( https://sourceware.org/pipermail/binutils/2022-September/122962.html ), I removed support tso for the .option directive. So I think it's not necessary to add this. > Thanks, > Shihua I don't agree that theory. riscv_set_options.tso might not be absolutely necessary (as Nelson pointed out) but EF_RISCV_TSO handling should remain. The option variable for RVC (riscv_set_options.rvc) is necessary because the assembler needs some decisions based on the "current" status of whether the 'C' extension is enabled. That's different from riscv_set_options.tso (that is removed). However, for ELF flags, things are a bit different. If RVC ('C' extension) is used *somewhere* in the object file, the whole object file must depend on RVC in some way. Likewise, if TSO ('Ztso' extension) is used *somewhere* in the object file, the whole object file must depend on TSO in some way. In either cases, we should check whether related extension is enabled somewhere in the object file and set corresponding ELF flags. There are two cases: 1. When we parse "initial" architecture ('C' and 'Ztso') 2. When the architecture is changed via ".option arch" ('C' only!?) So, my conclusion is, riscv_set_options.tso handling can be removed but EF_RISCV_TSO handling in ".option arch" cannot (as long as we support TSO). Regards, Tsukasa > > > > -----原始邮件----- > > 发件人: "Tsukasa OI" > > 发送时间: 2022-09-21 14:40:42 (星期三) > > 收件人: "Tsukasa OI" , "Nelson Chu" , "Shihua LIAO" > > 抄送: binutils@sourceware.org > > 主题: [PATCH 0/1] RISC-V: Minor fix to the 'Ztso' extension support > > > > Hi all, > > > > I think Shihua could have missed my review 2: > > > > (see near the end of my e-mail starting with "Other than that,"). > > > > Currently, it sets EF_RISCV_TSO ELF flag when initial ISA string contains > > the 'Ztso' extension. However, GAS has a way to update the ISA string: > > ".option arch". > > > > When the architecture is updated by ".option arch", EF_RISCV_RVC ELF flag > > is set when the 'C' extension is detected. Analogously, this patchset sets > > the EF_RISCV_TSO when the 'Ztso' extension is detected. > > > > With this patch, the 'Ztso' extension support will be complete. > > > > Thanks, > > > > > > > > > > Tsukasa OI (1): > > RISC-V: Set EF_RISCV_TSO also on .option arch > > > > gas/config/tc-riscv.c | 3 +++ > > 1 file changed, 3 insertions(+) > > > > > > base-commit: e472ec9fad6d7b0da914da606430e249d1bd99e4 > > -- > > 2.34.1 >