Lines Matching refs:store
35 When an acquire load returns the value stored by a release store
37 from" the release store), then all operations preceding that
38 store "happen before" any operations following that load acquire.
42 Coherence (co): When one CPU's store to a given variable overwrites
43 either the value from another CPU's store or some later value,
54 Control Dependency: When a later store's execution depends on a test
56 a "control dependency" extends from that load to that store.
88 Data Dependency: When the data written by a later store is computed based
90 extends from that load to that later store. For example:
105 From-Reads (fr): When one CPU's store to a given variable happened
108 link from the load to the store.
145 CPU's store to the first CPU's load. Reads-from links have the
146 nice property that time must advance from the store to the load,
167 a special operation that includes a store and which orders that
168 store after earlier memory references that ran on that same CPU.
169 An example special release store is smp_store_release(), but