Lines Matching defs:new_cfun
4769 set_cfun (struct function *new_cfun, bool force)
4771 if (cfun != new_cfun || force)
4773 cfun = new_cfun;
4774 invoke_set_current_function_hook (new_cfun ? new_cfun->decl : NULL_TREE);
4783 /* Push the current cfun onto the stack, and set cfun to new_cfun. Also set
4787 push_cfun (struct function *new_cfun)
4792 current_function_decl = new_cfun ? new_cfun->decl : NULL_TREE;
4793 set_cfun (new_cfun);
4801 struct function *new_cfun = cfun_stack.pop ();
4809 set_cfun (new_cfun);
4810 current_function_decl = new_cfun ? new_cfun->decl : NULL_TREE;