cpython/Include/opcode.h

#ifndef Py_OPCODE_H
#define Py_OPCODE_H
#ifdef __cplusplus
extern "C" {
#endif

#include "opcode_ids.h"


#define NB_ADD
#define NB_AND
#define NB_FLOOR_DIVIDE
#define NB_LSHIFT
#define NB_MATRIX_MULTIPLY
#define NB_MULTIPLY
#define NB_REMAINDER
#define NB_OR
#define NB_POWER
#define NB_RSHIFT
#define NB_SUBTRACT
#define NB_TRUE_DIVIDE
#define NB_XOR
#define NB_INPLACE_ADD
#define NB_INPLACE_AND
#define NB_INPLACE_FLOOR_DIVIDE
#define NB_INPLACE_LSHIFT
#define NB_INPLACE_MATRIX_MULTIPLY
#define NB_INPLACE_MULTIPLY
#define NB_INPLACE_REMAINDER
#define NB_INPLACE_OR
#define NB_INPLACE_POWER
#define NB_INPLACE_RSHIFT
#define NB_INPLACE_SUBTRACT
#define NB_INPLACE_TRUE_DIVIDE
#define NB_INPLACE_XOR

#define NB_OPARG_LAST

#ifdef __cplusplus
}
#endif
#endif /* !Py_OPCODE_H */