Lines Matching refs:access
51 const ContextAccess& access = ContextAccessOf(node->op()); in SimplifyJSLoadContext() local
52 DCHECK_LE(new_depth, access.depth()); in SimplifyJSLoadContext()
54 if (new_depth == access.depth() && in SimplifyJSLoadContext()
60 new_depth, access.index(), access.immutable()); in SimplifyJSLoadContext()
70 const ContextAccess& access = ContextAccessOf(node->op()); in SimplifyJSStoreContext() local
71 DCHECK_LE(new_depth, access.depth()); in SimplifyJSStoreContext()
73 if (new_depth == access.depth() && in SimplifyJSStoreContext()
79 jsgraph_->javascript()->StoreContext(new_depth, access.index()); in SimplifyJSStoreContext()
131 const ContextAccess& access = ContextAccessOf(node->op()); in ReduceJSLoadContext() local
132 size_t depth = access.depth(); in ReduceJSLoadContext()
151 if (!access.immutable()) { in ReduceJSLoadContext()
160 maybe_value = concrete.get(static_cast<int>(access.index())); in ReduceJSLoadContext()
191 const ContextAccess& access = ContextAccessOf(node->op()); in ReduceJSStoreContext() local
192 size_t depth = access.depth(); in ReduceJSStoreContext()