• Home
  • Raw
  • Download

Lines Matching refs:depth

55   DCHECK_LE(new_depth, access.depth());  in SimplifyJSLoadContext()
57 if (new_depth == access.depth() && in SimplifyJSLoadContext()
74 DCHECK_LE(new_depth, access.depth()); in SimplifyJSStoreContext()
76 if (new_depth == access.depth() && in SimplifyJSStoreContext()
140 size_t depth = access.depth(); in ReduceJSLoadContext() local
143 Node* context = NodeProperties::GetOuterContext(node, &depth); in ReduceJSLoadContext()
146 GetSpecializationContext(broker(), context, &depth, outer()); in ReduceJSLoadContext()
150 return SimplifyJSLoadContext(node, context, depth); in ReduceJSLoadContext()
155 concrete = concrete.previous(&depth); in ReduceJSLoadContext()
156 if (depth > 0) { in ReduceJSLoadContext()
158 return SimplifyJSLoadContext(node, jsgraph()->Constant(concrete), depth); in ReduceJSLoadContext()
164 return SimplifyJSLoadContext(node, jsgraph()->Constant(concrete), depth); in ReduceJSLoadContext()
175 return SimplifyJSLoadContext(node, jsgraph()->Constant(concrete), depth); in ReduceJSLoadContext()
187 return SimplifyJSLoadContext(node, jsgraph()->Constant(concrete), depth); in ReduceJSLoadContext()
202 size_t depth = access.depth(); in ReduceJSStoreContext() local
206 Node* context = NodeProperties::GetOuterContext(node, &depth); in ReduceJSStoreContext()
209 GetSpecializationContext(broker(), context, &depth, outer()); in ReduceJSStoreContext()
213 return SimplifyJSStoreContext(node, context, depth); in ReduceJSStoreContext()
218 concrete = concrete.previous(&depth); in ReduceJSStoreContext()
219 if (depth > 0) { in ReduceJSStoreContext()
221 return SimplifyJSStoreContext(node, jsgraph()->Constant(concrete), depth); in ReduceJSStoreContext()
224 return SimplifyJSStoreContext(node, jsgraph()->Constant(concrete), depth); in ReduceJSStoreContext()
229 size_t depth = std::numeric_limits<size_t>::max(); in GetModuleContext() local
230 Node* context = NodeProperties::GetOuterContext(node, &depth); in GetModuleContext()
234 size_t depth = 1; in GetModuleContext() local
235 c = c.previous(&depth); in GetModuleContext()
236 CHECK_EQ(depth, 0); in GetModuleContext()