On Fri, Aug 18, 2017 at 1:59 PM, Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> wrote: > >> We do all the flow stuff for variables >> anyway, and using a hidden variable would make it potentially a lot >> more flexible. You could make the context op do much more than just a >> fixed inc/dec. > > Yes, I see potential too, but nothing very specific. Have you something in mind? No, to a first approximation I'd just continue to add and subtract constant values. But it might allow us to do conditional contexts, which the kernel actually needs. Right now the kernel does tricks like this: # define __cond_lock(x,c) ((c) ? ({ __acquire(x); 1; }) : 0) (see include/linux/compiler.h) exactly because we want to not really add a constant 1 to the context, but add it only if the condition "c" was non-zero. We then depend on sparse just doing the flow simplification etc. But it *could* have been done by just instead allowing the context to be updated with a boolean variable.. But sparse might prefer that flow-based approach anyway - I'm just saying that sometimes a more flexible model could be a good thing at least in theory. Linus -- 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