On Sun, Jun 6, 2021 at 2:19 PM Alexander Monakov <amonakov@xxxxxxxxx> wrote: > > > So yeah, that seems like a nice solution to the issue, and should make > > the barriers all unique to the compiler. > > It also plants a nice LTO time-bomb (__COUNTER__ values will be unique > only within each LTO input unit, not across all of them). That could be an issue in other circumstances, but for at least volatile_if() that doesn't much matter. The decision there is purely local, and it's literally about the two sides of the conditional not being merged. Now, an optimizing linker or assembler can of course do anything at all in theory: and if that ends up being an issue we'd have to have some way to actually propagate the barrier from being just a compiler thing. Right now gcc doesn't even output the barrier in the assembly code, so it's invisible to any optimizing assembler/linker thing. But I don't think that's an issue with what _currently_ goes on in an assembler or linker - not even a smart one like LTO. And such things really are independent of "volatile_if()". We use barriers for other things where we need to force some kind of operation ordering, and right now the only thing that re-orders accesses etc is the compiler. Btw, since we have compiler people on line, the suggested 'barrier()' isn't actually perfect for this particular use: #define barrier() __asm__ __volatile__("" : : "i" (__COUNTER__) : "memory") in the general barrier case, we very much want to have that "memory" clobber, because the whole point of the general barrier case is that we want to make sure that the compiler doesn't cache memory state across it (ie the traditional use was basically what we now use "cpu_relax()" for, and you would use it for busy-looping on some condition). In the case of "volatile_if()", we actually would like to have not a memory clobber, but a "memory read". IOW, it would be a barrier for any writes taking place, but reads can move around it. I don't know of any way to express that to the compiler. We've used hacks for it before (in gcc, BLKmode reads turn into that kind of barrier in practice, so you can do something like make the memory input to the asm be a big array). But that turned out to be fairly unreliable, so now we use memory clobbers even if we just mean "reads random memory". Example: variable_test_bit(), which generates a "bt" instruction, does : "m" (*(unsigned long *)addr), "Ir" (nr) : "memory"); and the memory clobber is obviously wrong: 'bt' only *reads* memory, but since the whole reason we use it is that it's not just that word at address 'addr', in order to make sure that any previous writes are actually stable in memory, we use that "memory" clobber. It would be much nicer to have a "memory read" marker instead, to let the compiler know "I need to have done all pending writes to memory, but I can still cache read values over this op because it doesn't _change_ memory". Anybody have ideas or suggestions for something like that? Linus