public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Question regarding "Control Dependencies" in memory-barriers.txt
@ 2014-08-04 17:07 Pranith Kumar
  2014-08-04 18:52 ` Paul E. McKenney
  0 siblings, 1 reply; 10+ messages in thread
From: Pranith Kumar @ 2014-08-04 17:07 UTC (permalink / raw)
  To: Paul McKenney, Peter Zijlstra, LKML

The section "Control Dependencies" in memory-barriers.txt has the
following text:

662 In addition, you need to be careful what you do with the local variable 'q',
663 otherwise the compiler might be able to guess the value and again remove
664 the needed conditional.  For example:
665
666         q = ACCESS_ONCE(a);
667         if (q % MAX) {
668                 barrier();
669                 ACCESS_ONCE(b) = p;
670                 do_something();
671         } else {
672                 barrier();
673                 ACCESS_ONCE(b) = p;
674                 do_something_else();
675         }
676
677 If MAX is defined to be 1, then the compiler knows that (q % MAX) is
678 equal to zero, in which case the compiler is within its rights to
679 transform the above code into the following:
680
681         q = ACCESS_ONCE(a);
682         ACCESS_ONCE(b) = p;
683         do_something_else();

Given that there is an explicit barrier() in both the branches of
if/else statement, how can the above transformation happen? The
compiler cannot just remove the barrier(), right?

I think it will transform to the following if MAX is defined to 1:

q = ACCESS_ONCE(a);
barrier();
ACCESS_ONCE(b) = p;
do_something_else();

and hence the ordering will be preserved. What am I missing here?

-- 
Pranith

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-08-14  1:03 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-04 17:07 Question regarding "Control Dependencies" in memory-barriers.txt Pranith Kumar
2014-08-04 18:52 ` Paul E. McKenney
2014-08-04 21:03   ` Pranith Kumar
2014-08-05  7:32     ` Peter Zijlstra
2014-08-05 12:13       ` Pranith Kumar
2014-08-05 12:58         ` Peter Zijlstra
2014-08-13 22:44         ` Paul E. McKenney
2014-08-14  0:10           ` Pranith Kumar
2014-08-14  0:35             ` Paul E. McKenney
2014-08-14  1:03               ` Pranith Kumar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox