• Guido van Rossum's avatar
    Another ugly inlining hack, expanding the two PyDict_GetItem() calls · 3a4dfc87
    Guido van Rossum authored
    in LOAD_GLOBAL.  Besides saving a C function call, it saves checks
    whether f_globals and f_builtins are dicts, and extracting and testing
    the string object's hash code is done only once.  We bail out of the
    inlining if the name is not exactly a string, or when its hash is -1;
    because of interning, neither should ever happen.  I believe interning
    guarantees that the hash code is set, and I believe that the 'names'
    tuple of a code object always contains interned strings, but I'm not
    assuming that -- I'm simply testing hash != -1.
    
    On my home machine, this makes a pystone variant with new-style
    classes and slots run at the same speed as classic pystone!  (With
    new-style classes but without slots, it is still a lot slower.)
    3a4dfc87
ceval.c 86.1 KB