RE: [PATCH v4 2/6] RISC-V: Add gr2vr cost helper function

2025-05-06 Thread Li, Pan2
iu, Hongtao ; Robin Dapp Subject: Re: [PATCH v4 2/6] RISC-V: Add gr2vr cost helper function > +/* > + * Return the cost of operation that move from gpr to vr. > + * > + * It will take the value of --param=gpr2vr_cost if it is provided. > + * Or the default regmove->GR2VR will b

Re: [PATCH v4 2/6] RISC-V: Add gr2vr cost helper function

2025-05-06 Thread Robin Dapp
+/* + * Return the cost of operation that move from gpr to vr. + * + * It will take the value of --param=gpr2vr_cost if it is provided. + * Or the default regmove->GR2VR will be returned. + */ Please still remove the leading '*' of the comment. The series is OK with that fixed. Thanks for you

[PATCH v4 2/6] RISC-V: Add gr2vr cost helper function

2025-05-06 Thread pan2 . li
From: Pan Li After we introduced the --param=gpr2vr-cost option to set the cost value of when operation act from gpr to vr, we would like to introduce a new helper function to get the cost of gp2vr. And then make sure all reference to gr2vr should go this helper function. The helper function wi