Home
last modified time | relevance | path

Searched refs:uopcode (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Python/
Dexecutor_cases.c.h18 UOP_STAT_INC(uopcode, miss);
27 UOP_STAT_INC(uopcode, miss);
333 UOP_STAT_INC(uopcode, miss);
345 UOP_STAT_INC(uopcode, miss);
366 UOP_STAT_INC(uopcode, miss);
382 UOP_STAT_INC(uopcode, miss);
396 UOP_STAT_INC(uopcode, miss);
440 UOP_STAT_INC(uopcode, miss);
444 UOP_STAT_INC(uopcode, miss);
454 UOP_STAT_INC(uopcode, miss);
[all …]
Doptimizer.c678 uint32_t uopcode = BRANCH_TO_GUARD[opcode - POP_JUMP_IF_FALSE][jump_likely]; in translate_bytecode_to_trace() local
681 counter, bitcount, jump_likely, confidence, _PyUOpName(uopcode)); in translate_bytecode_to_trace()
693 ADD_TO_TRACE(uopcode, 0, 0, INSTR_IP(next_instr, code)); in translate_bytecode_to_trace()
696 ADD_TO_TRACE(uopcode, 0, 0, INSTR_IP(target_instr, code)); in translate_bytecode_to_trace()
Dceval.c992 uint16_t uopcode; in _PyEval_EvalFrameDefault()
1001 uopcode = next_uop->opcode; in _PyEval_EvalFrameDefault()
1017 UOP_STAT_INC(uopcode, execution_count); in _PyEval_EvalFrameDefault()
1018 UOP_PAIR_INC(uopcode, lastuop); in _PyEval_EvalFrameDefault()
1023 switch (uopcode) { in _PyEval_EvalFrameDefault()
/external/python/cpython3/Tools/jit/
Dtemplate.c89 int uopcode = _JIT_OPCODE; in _JIT_ENTRY() local
105 UOP_STAT_INC(uopcode, execution_count); in _JIT_ENTRY()
108 if (uopcode == _JUMP_TO_TOP) { in _JIT_ENTRY()
111 switch (uopcode) { in _JIT_ENTRY()
/external/python/cpython3/Include/internal/
Dpycore_code.h365 #define UOP_PAIR_INC(uopcode, lastuop) \ argument
368 _Py_stats->optimization_stats.opcode[lastuop].pair_count[uopcode]++; \
370 lastuop = uopcode; \
399 #define UOP_PAIR_INC(uopcode, lastuop) ((void)0) argument