Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add extra stats for attribute misses #26732

Merged
merged 1 commit into from
Jun 15, 2021

Conversation

markshannon
Copy link
Member

We would like more detailed feedback of why the specialization of LOAD_ATTR is not as effective as it could be.
We will also want more detailed feedback on other specializations in the future.

This PR adds stats reporting the number of specialization failures for (type, attribute, failure_kind) grouped by opcode.
This is all strictly internal and hidden behind a compile-time flag.

Snippet from the output of ./python -m unittest test.test_sys

load_attr.fails:
        function.__dict__ (not a member descriptor): 4
        ModuleSpec.parent (not a member descriptor): 2
        ModuleSpec.has_location (not a member descriptor): 2
        type.find_spec (__getattribute__ overridden): 6
        type._ORIGIN (__getattribute__ overridden): 1
        sys.flags.verbose (non-object slot): 24
        ModuleSpec.cached (not a member descriptor): 4
        os.stat_result.st_mode (non-object slot): 4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants