On Thu, Aug 10, 2017 at 6:34 PM, Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> wrote: > On Thu, Aug 10, 2017 at 5:25 PM, Christopher Li <sparse@xxxxxxxxxxx> wrote: >> On Thu, Mar 16, 2017 at 4:43 PM, Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> wrote: >> >> Sorry for not able to join the discussion earlier. I am catching up >> my backlogs of discussion. I have think about this for a while now. >> I think there is one alternative solution is just give set_val instruction >> a size (not type). >> >> reason being: >> 1) Necessary for CSE as well. >> If CSE combine two set_val of different size as one pesudo. >> and it is used as two different size. That is likely a bug. > > Absolutely not. > Anyway, currectlyeach distinct value correspond to a *single/unique* > pseudo. IN other words, there is no need to do any kind of CSE on > *values*, they are already kinda pre-CSEed at their creation > (because a constant value is nothing more than this value). > > Sorry, this has been tried and discussed already. It doesn't really work. > * a size is essentially a type, certainly for integers in sparse IR. > * A constant is a constant, 1 is 1, when it has 1 bit or 64 bits, it's the same > constant and follow the same mathematical rules. It's even not signed or > unsigned, it's just 1. > * in sparse, types are conveyed by the *operations* made on their operands. > There are lots of good reasons for this. Trying to do the opposite for these > constants will just break a lot of things, duplicate a lot of code > (try it) and OK. I have think about it. I look back the email. It is actually on the email I reply to (and quoted) . So Linus was thinking two solutions. One of them is add size to pseudo. The other is add push instruction. He said that after he said pseudo shouldn't have the size, which is what you are repeating here. So the reason you use are actually older one, which already overrule by Linus. He thinks have size for pseudo is acceptable. He said the type might be undefined, the size is well-defined. I totally agree. What I am popularizing is actually along the line of Linus' first suggestion. Except that I don't give size to *all* the pseudo, only the OP_SETVAL, via the instruction to acquire the size. I have to look at what impact it has on CSE. It might not be that big a deal. Chris ======quote from Linus email May 16 on this thread ======== Yes. Ok, I see the problem. I think we could add a 'size' to the pseudo, and solve it that way. CSE and other linearization artifacts may mean that the type is undefined, but the size should be well-defined. Alternatively - and this might be the better solution - the OP_CALL instruction might be better off split up a bit. Instead of having just that ================================================== -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html