Lines Matching refs:inlined
128 static bool inline_function_impl(nir_function_impl *impl, struct set *inlined);
132 struct set *inlined)
151 /* Make sure that the function we're calling is already inlined */
152 inline_function_impl(call->callee->impl, inlined);
175 inline_function_impl(nir_function_impl *impl, struct set *inlined)
177 if (_mesa_set_search(inlined, impl))
178 return false; /* Already inlined */
185 progress |= inline_functions_block(block, &b, inlined);
198 _mesa_set_add(inlined, impl);
276 struct set *inlined = _mesa_pointer_set_create(NULL);
281 progress = inline_function_impl(function->impl, inlined) || progress;
284 _mesa_set_destroy(inlined, NULL);