Home
last modified time | relevance | path

Searched refs:LOAD_GLOBAL (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Include/
Dopcode.h96 #define LOAD_GLOBAL 116 macro
/third_party/python/Objects/
Dlnotab_notes.txt101 3 6 LOAD_GLOBAL 0 (print)
110 6 20 LOAD_GLOBAL 0 (print)
Dcodeobject.c297 if (opcode == LOAD_GLOBAL) { in _PyCode_InitOpcache()
/third_party/python/Doc/library/
Ddis.rst37 2 0 LOAD_GLOBAL 0 (len)
105 LOAD_GLOBAL
993 .. opcode:: LOAD_GLOBAL (namei)
/third_party/python/Python/
Dcompile.c1031 case LOAD_GLOBAL: in stack_effect()
3624 case Load: op = LOAD_GLOBAL; break; in compiler_nameop()
Dceval.c2543 case TARGET(LOAD_GLOBAL): { in _PyEval_EvalFrameDefault()
/third_party/python/Doc/whatsnew/
D3.8.rst1525 * ``LOAD_GLOBAL`` instruction now uses new "per opcode cache" mechanism.
/third_party/python/Misc/
DNEWS5938 - bpo-26219: Implemented per opcode cache mechanism and ``LOAD_GLOBAL``
5939 instruction use it. ``LOAD_GLOBAL`` is now about 40% faster. Contributed