Lines Matching full:dependency
7 Address Dependency: When the address of a later memory access is computed
9 dependency" extends from that load extending to the later access.
20 address dependency extends from that rcu_dereference() to that
25 See also "Control Dependency" and "Data Dependency".
54 Control Dependency: When a later store's execution depends on a test
56 a "control dependency" extends from that load to that store.
62 Here, the control dependency extends from the READ_ONCE() on
67 See also "Address Dependency" and "Data Dependency".
88 Data Dependency: When the data written by a later store is computed based
89 on the value returned by an earlier load, a "data dependency"
95 In this case, the data dependency extends from the READ_ONCE()
100 especially true in cases where the dependency is carried through
103 See also "Address Dependency" and "Control Dependency".