Searched refs:STORE_SUBSCR (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Include/internal/ |
H A D | pycore_opcode.h | 43 [STORE_SUBSCR] = 1, 220 [STORE_SUBSCR] = STORE_SUBSCR, 221 [STORE_SUBSCR_ADAPTIVE] = STORE_SUBSCR, 222 [STORE_SUBSCR_DICT] = STORE_SUBSCR, 223 [STORE_SUBSCR_LIST_INT] = STORE_SUBSCR, 302 [STORE_SUBSCR] = "STORE_SUBSCR",
|
/third_party/python/Python/ |
H A D | specialize.c | 25 [STORE_SUBSCR] = STORE_SUBSCR_ADAPTIVE, 118 err += add_stat_dict(stats, STORE_SUBSCR, "store_subscr"); in _Py_GetSpecializationStats() 1278 SPECIALIZATION_FAIL(STORE_SUBSCR, SPEC_FAIL_OUT_OF_RANGE); in _Py_Specialize_StoreSubscr() 1283 SPECIALIZATION_FAIL(STORE_SUBSCR, SPEC_FAIL_SUBSCR_LIST_SLICE); in _Py_Specialize_StoreSubscr() 1287 SPECIALIZATION_FAIL(STORE_SUBSCR, SPEC_FAIL_OTHER); in _Py_Specialize_StoreSubscr() 1299 SPECIALIZATION_FAIL(STORE_SUBSCR, SPEC_FAIL_SUBSCR_DICT_SUBCLASS_NO_OVERRIDE); in _Py_Specialize_StoreSubscr() 1304 SPECIALIZATION_FAIL(STORE_SUBSCR, SPEC_FAIL_OUT_OF_RANGE); in _Py_Specialize_StoreSubscr() 1308 SPECIALIZATION_FAIL(STORE_SUBSCR, SPEC_FAIL_SUBSCR_ARRAY_INT); in _Py_Specialize_StoreSubscr() 1311 SPECIALIZATION_FAIL(STORE_SUBSCR, SPEC_FAIL_SUBSCR_ARRAY_SLICE); in _Py_Specialize_StoreSubscr() 1314 SPECIALIZATION_FAIL(STORE_SUBSCR, SPEC_FAIL_OTHE in _Py_Specialize_StoreSubscr() [all...] |
H A D | ceval.c | 2295 TARGET(STORE_SUBSCR) { 2296 PREDICTED(STORE_SUBSCR); 2327 STAT_INC(STORE_SUBSCR, deferred); 2329 JUMP_TO_INSTRUCTION(STORE_SUBSCR); 2338 DEOPT_IF(!PyLong_CheckExact(sub), STORE_SUBSCR); 2339 DEOPT_IF(!PyList_CheckExact(list), STORE_SUBSCR); 2342 DEOPT_IF(((size_t)Py_SIZE(sub)) > 1, STORE_SUBSCR); 2345 DEOPT_IF(index >= PyList_GET_SIZE(list), STORE_SUBSCR); 2346 STAT_INC(STORE_SUBSCR, hit); 2364 DEOPT_IF(!PyDict_CheckExact(dict), STORE_SUBSCR); [all...] |
H A D | compile.c | 974 case STORE_SUBSCR: in stack_effect() 6029 ADDOP(c, STORE_SUBSCR); in compiler_augassign() 6126 ADDOP(c, STORE_SUBSCR); in compiler_annassign() 6246 case Store: op = STORE_SUBSCR; break; in compiler_subscript()
|
/third_party/python/Include/ |
H A D | opcode.h | 33 #define STORE_SUBSCR 60 macro
|
Completed in 22 milliseconds